]> Zhao Yanbai Git Server - minix.git/commitdiff
Add include/memory.h
authorArun Thomas <arun@minix3.org>
Mon, 4 Oct 2010 13:37:46 +0000 (13:37 +0000)
committerArun Thomas <arun@minix3.org>
Mon, 4 Oct 2010 13:37:46 +0000 (13:37 +0000)
Some ports expect that it exists.

include/Makefile
include/memory.h [new file with mode: 0644]

index 50554531ac0c3469788f368e104850808db4f334..6624401b40f18f76a520a24a09af09d7fad462eb 100644 (file)
@@ -9,7 +9,8 @@ INCS=   alloca.h ansi.h a.out.h ar.h assert.h configfile.h ctype.h \
        stdint.h stdbool.h stdio.h stdlib.h string.h strings.h sysexits.h \
        syslog.h tar.h termcap.h termios.h time.h timers.h tools.h \
        ttyent.h ucontext.h unistd.h utime.h utmp.h wchar.h wctype.h \
-       hgfs.h tzfile.h util.h fetch.h mpool.h ndbm.h db.h poll.h resolv.h
+       hgfs.h tzfile.h util.h fetch.h mpool.h ndbm.h db.h poll.h resolv.h \
+       memory.h
 INCS+= arpa/inet.h arpa/nameser.h
 INCS+= minix/a.out.h minix/bitmap.h minix/callnr.h minix/cdrom.h \
        minix/com.h minix/config.h minix/const.h minix/cpufeature.h \
diff --git a/include/memory.h b/include/memory.h
new file mode 100644 (file)
index 0000000..7e81ef0
--- /dev/null
@@ -0,0 +1,6 @@
+#ifndef _MEMORY_H
+#define _MEMORY_H
+
+#include <string.h>
+
+#endif /* _MEMORY_H */