Skip to content

Commit 8febaf4

Browse files
committed
fatal error: malloc.h: No such file or directory flame#785
Replace include of non-standard header malloc.h by stdlib.h to fix issue reported on upstream BLIS github. flame#785 AMD-Internal: [CPUPL-4307] Change-Id: I4ac5cb3164fe7050bba6579b08cc2d3ff412ccba
1 parent 6eac86d commit 8febaf4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

aocl_dtl/aoclos.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
*
44
* Description : Abstraction for os services used by DTL.
55
*
6-
* Copyright (C) 2022, Advanced Micro Devices, Inc. All rights reserved.
6+
* Copyright (C) 2022 - 2023, Advanced Micro Devices, Inc. All rights reserved.
77
*
88
*==================================================================*/
99

1010
#ifndef _AOCL_OS_H_
1111
#define _AOCL_OS_H_
1212

1313
#include "aocltpdef.h"
14-
#include "malloc.h"
14+
#include "stdlib.h"
1515

1616
/* The OS Services function declaration */
1717

0 commit comments

Comments
 (0)