Skip to content

Commit

Permalink
add patch replacing linux-only malloc.h usage with portable stdlib.h
Browse files Browse the repository at this point in the history
  • Loading branch information
notspiff committed Mar 14, 2015
1 parent 806fb07 commit f2e7d98
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions depends/common/sidplay2/07-replace-linux-header.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- sidplay2/libsidutils/src/ini/ini.cpp.orig 2015-03-14 09:25:18.182881129 +0100
+++ sidplay2/libsidutils/src/ini/ini.cpp 2015-03-14 09:25:31.018881743 +0100
@@ -100,7 +100,7 @@
//*******************************************************************************************************************
#include <assert.h>
#include <ctype.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <stdio.h>
#include <string.h>

0 comments on commit f2e7d98

Please sign in to comment.