Skip to content

Commit

Permalink
fatal error: malloc.h: No such file or directory flame#785
Browse files Browse the repository at this point in the history
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
  • Loading branch information
edwsmyth committed Dec 13, 2023
1 parent 6eac86d commit 8febaf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aocl_dtl/aoclos.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
*
* 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.
*
*==================================================================*/

#ifndef _AOCL_OS_H_
#define _AOCL_OS_H_

#include "aocltpdef.h"
#include "malloc.h"
#include "stdlib.h"

/* The OS Services function declaration */

Expand Down

0 comments on commit 8febaf4

Please sign in to comment.