1992-12-21 21:17:54 +00:00
|
|
|
/* i386 AIX 1.2.x host system */
|
|
|
|
/* From Minh Tran-Le <TRANLE@INTELLICORP.COM>. */
|
|
|
|
|
1993-07-30 18:17:38 +00:00
|
|
|
#include <ansidecl.h>
|
1992-12-21 21:17:54 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <utime.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/file.h>
|
1994-04-20 22:42:57 +00:00
|
|
|
#include <stdlib.h>
|
1992-12-21 21:17:54 +00:00
|
|
|
|
1993-09-17 09:08:00 +00:00
|
|
|
#ifndef O_ACCMODE
|
1992-12-21 21:17:54 +00:00
|
|
|
#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
|
|
|
|
#endif
|
|
|
|
#define SEEK_SET 0
|
|
|
|
#define SEEK_CUR 1
|
|
|
|
|
|
|
|
#define POSIX_UTIME
|
|
|
|
|
1993-08-03 06:36:30 +00:00
|
|
|
extern void abort PARAMS ((void));
|
|
|
|
extern int close PARAMS ((int));
|
|
|
|
extern void exit PARAMS ((int));
|
|
|
|
extern int fclose PARAMS ((FILE*));
|
|
|
|
extern void free PARAMS ((PTR));
|
|
|
|
extern int fseek PARAMS ((FILE*, long, int));
|
|
|
|
extern void perror PARAMS ((CONST char *));
|
1992-12-21 21:17:54 +00:00
|
|
|
|
|
|
|
extern char *getenv();
|
|
|
|
extern int chmod();
|
|
|
|
extern int fstat();
|
|
|
|
extern int stat();
|
|
|
|
|
|
|
|
extern char *ctime();
|
|
|
|
extern int _flsbuf();
|
|
|
|
extern int fclose();
|
|
|
|
extern int utimes();
|
|
|
|
extern int vfprintf();
|
|
|
|
extern long atol();
|
|
|
|
extern int fputc();
|
|
|
|
extern int unlink();
|
|
|
|
|
|
|
|
#include "fopen-same.h"
|