12 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
21 /* Some things that need to be defined in order to make code written for
22 BSD Unix compile under System V Unix. */
24 /*#include <memory.h>*/
25 #define bcmp(b1,b2,len) memcmp(b1,b2,len)
26 #define bcopy(src,dst,len) memcpy(dst,src,len)
27 #define bzero(s,n) memset(s,0,n)
31 #ifndef DONTDECLARE_MALLOC
32 extern PTR malloc
PARAMS ((unsigned));
33 extern PTR realloc
PARAMS ((PTR
, unsigned));
34 extern void free
PARAMS ((PTR
));
37 #include "fopen-same.h"
This page took 0.039032 seconds and 4 git commands to generate.