1993-09-17 09:08:00 +00:00
|
|
|
#ifndef _HPPAHPUX_H
|
1993-05-01 00:57:03 +00:00
|
|
|
#define _HPPAHPUX_H
|
|
|
|
|
1993-09-17 09:08:00 +00:00
|
|
|
#include <stddef.h>
|
1992-06-19 22:25:45 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/file.h>
|
1992-09-26 11:00:36 +00:00
|
|
|
#include <memory.h>
|
1992-12-22 01:53:33 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#define HOST_HPPAHPUX
|
1992-06-25 23:11:26 +00:00
|
|
|
|
|
|
|
void free();
|
|
|
|
|
1993-09-17 09:08:00 +00:00
|
|
|
#ifndef O_ACCMODE
|
1992-06-19 22:25:45 +00:00
|
|
|
#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
|
|
|
|
#endif
|
|
|
|
#define SEEK_SET 0
|
|
|
|
#define SEEK_CUR 1
|
|
|
|
|
1993-09-17 09:08:00 +00:00
|
|
|
#ifndef __STDC__
|
1992-09-29 15:47:03 +00:00
|
|
|
#define NATIVE_HPPAHPUX_COMPILER
|
|
|
|
#endif
|
|
|
|
|
1992-11-02 20:41:14 +00:00
|
|
|
#define USE_UTIME
|
|
|
|
|
1992-06-19 22:25:45 +00:00
|
|
|
#if 0
|
|
|
|
static int
|
|
|
|
rename(from, to)
|
|
|
|
{
|
|
|
|
unlink(to);
|
|
|
|
return(link(from, to));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "fopen-same.h"
|
1993-05-01 00:57:03 +00:00
|
|
|
|
|
|
|
#endif /* _HPPAHPUX_H */
|