summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoranonymous <local@localhost>2011-03-02 17:53:38 +0100
committeranonymous <local@localhost>2011-03-02 17:53:38 +0100
commitb12153bb8ad75cf2bf51d486895fce2769fe66d9 (patch)
tree242dfcf2749823a2599c6675f703654c3d06f961 /src
parent168b9dc6cfcd21ff3e1c568ec10ec92b5fbb8801 (diff)
downloadlibcxxrt-b12153bb8ad75cf2bf51d486895fce2769fe66d9.tar.gz
libcxxrt-b12153bb8ad75cf2bf51d486895fce2769fe66d9.tar.bz2
libcxxrt-b12153bb8ad75cf2bf51d486895fce2769fe66d9.tar.xz
<malloc.h> was replaced with <stdlib.h>
Diffstat (limited to 'src')
-rw-r--r--src/memory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memory.cc b/src/memory.cc
index 7e0fc3c..7a7fb3c 100644
--- a/src/memory.cc
+++ b/src/memory.cc
@@ -4,7 +4,7 @@
#include <stddef.h>
-#include <malloc.h>
+#include <stdlib.h>
#include "stdexcept.h"
namespace std {