Add include/memory.h
Some ports expect that it exists.
This commit is contained in:
parent
98ddbffe6e
commit
40ccb7ed54
2 changed files with 8 additions and 1 deletions
|
@ -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 \
|
||||
|
|
6
include/memory.h
Normal file
6
include/memory.h
Normal file
|
@ -0,0 +1,6 @@
|
|||
#ifndef _MEMORY_H
|
||||
#define _MEMORY_H
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#endif /* _MEMORY_H */
|
Loading…
Reference in a new issue