darling-gdb/bfd/hosts/hppahpux.h

44 lines
628 B
C
Raw Normal View History

#ifndef _HPPAHPUX_H
#define _HPPAHPUX_H
#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>
#include <memory.h>
#include <stdlib.h>
#define HOST_HPPAHPUX
1992-06-25 23:11:26 +00:00
void free();
#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
#ifndef __STDC__
#define NATIVE_HPPAHPUX_COMPILER
#endif
#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"
#endif /* _HPPAHPUX_H */