1993-07-30 18:17:38 +00:00
|
|
|
#include <ansidecl.h>
|
1991-05-04 04:42:18 +00:00
|
|
|
#include <errno.h>
|
1991-06-14 20:50:29 +00:00
|
|
|
#include <sys/types.h>
|
1991-04-03 22:19:10 +00:00
|
|
|
#include <sys/dg_c_generics.h>
|
|
|
|
#include <unistd.h>
|
1991-06-14 20:50:29 +00:00
|
|
|
|
1991-04-03 22:19:10 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
1993-09-17 09:08:00 +00:00
|
|
|
#ifndef DONTDECLARE_MALLOC
|
1993-08-03 06:36:30 +00:00
|
|
|
extern PTR malloc PARAMS ((unsigned));
|
|
|
|
extern PTR realloc PARAMS ((PTR, unsigned));
|
1991-06-14 20:50:29 +00:00
|
|
|
#endif
|
1993-08-03 06:36:30 +00:00
|
|
|
extern int abort PARAMS ((void));
|
|
|
|
extern void free PARAMS ((PTR));
|
|
|
|
extern void bcopy PARAMS ((char*,char*,int));
|
|
|
|
extern void exit PARAMS ((int));
|
|
|
|
extern void bzero PARAMS ((char *, int));
|
1991-06-14 20:50:29 +00:00
|
|
|
extern int strtol();
|
1991-04-03 22:19:10 +00:00
|
|
|
#define NO_STDARG 1
|
|
|
|
|
|
|
|
|
|
|
|
|
1991-12-13 05:03:17 +00:00
|
|
|
#include "fopen-same.h"
|