summary refs log tree commit diff
path: root/src/memalloc.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2005-10-29 16:29:22 +1000
committerHerbert Xu <herbert@gondor.apana.org.au>2005-10-29 16:29:22 +1000
commit8b384a7013a6755c5a83ab71ee9065e3e48f8783 (patch)
treeacd4a38c9710da54f0c72b425e44c5da749bd46f /src/memalloc.c
parentFixed gcc 4.0 compilation problems (diff)
downloaddash-8b384a7013a6755c5a83ab71ee9065e3e48f8783.tar.gz
dash-8b384a7013a6755c5a83ab71ee9065e3e48f8783.zip
Added missing system.h inclusion for mempcpy
All users of mempcpy must include system.h.
Diffstat (limited to 'src/memalloc.c')
-rw-r--r--src/memalloc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/memalloc.c b/src/memalloc.c
index e53da2f..358e6ec 100644
--- a/src/memalloc.c
+++ b/src/memalloc.c
@@ -41,6 +41,7 @@
 #include "error.h"
 #include "machdep.h"
 #include "mystring.h"
+#include "system.h"
 
 /*
  * Like malloc, but returns an error when out of space.