From 8febaf4e9d997a01db079c913c67a230a1e27d09 Mon Sep 17 00:00:00 2001 From: Edward Smyth Date: Wed, 13 Dec 2023 04:02:58 -0500 Subject: [PATCH] fatal error: malloc.h: No such file or directory #785 Replace include of non-standard header malloc.h by stdlib.h to fix issue reported on upstream BLIS github. https://github.com/flame/blis/issues/785 AMD-Internal: [CPUPL-4307] Change-Id: I4ac5cb3164fe7050bba6579b08cc2d3ff412ccba --- aocl_dtl/aoclos.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aocl_dtl/aoclos.h b/aocl_dtl/aoclos.h index 57e0c24902..b22a329f5d 100644 --- a/aocl_dtl/aoclos.h +++ b/aocl_dtl/aoclos.h @@ -3,7 +3,7 @@ * * Description : Abstraction for os services used by DTL. * - * Copyright (C) 2022, Advanced Micro Devices, Inc. All rights reserved. + * Copyright (C) 2022 - 2023, Advanced Micro Devices, Inc. All rights reserved. * *==================================================================*/ @@ -11,7 +11,7 @@ #define _AOCL_OS_H_ #include "aocltpdef.h" -#include "malloc.h" +#include "stdlib.h" /* The OS Services function declaration */