]>
Commit | Line | Data |
---|---|---|
f751f474 | 1 | #include <ansidecl.h> |
7c884bf0 | 2 | #include <errno.h> |
e6129e2b | 3 | #include <sys/types.h> |
e4a0e98e SC |
4 | #include <sys/dg_c_generics.h> |
5 | #include <unistd.h> | |
e6129e2b | 6 | |
e4a0e98e SC |
7 | #include <string.h> |
8 | #include <fcntl.h> | |
9 | #include <sys/stat.h> | |
10 | #include <time.h> | |
11 | #include <ctype.h> | |
12 | ||
13 | #include <stdio.h> | |
14 | ||
c5652bff | 15 | #ifndef DONTDECLARE_MALLOC |
e49d5379 JG |
16 | extern PTR malloc PARAMS ((unsigned)); |
17 | extern PTR realloc PARAMS ((PTR, unsigned)); | |
e6129e2b | 18 | #endif |
e49d5379 JG |
19 | extern int abort PARAMS ((void)); |
20 | extern void free PARAMS ((PTR)); | |
21 | extern void bcopy PARAMS ((char*,char*,int)); | |
22 | extern void exit PARAMS ((int)); | |
23 | extern void bzero PARAMS ((char *, int)); | |
e6129e2b | 24 | extern int strtol(); |
e4a0e98e SC |
25 | #define NO_STDARG 1 |
26 | ||
27 | ||
28 | ||
a5431adc | 29 | #include "fopen-same.h" |