1991-10-11 10:45:56 +00:00
|
|
|
/* Host definition file for Sun-4 running with gcc, using "long long"
|
|
|
|
for addresses, to handle 64-bit target systems. */
|
1993-07-30 18:17:38 +00:00
|
|
|
#include <ansidecl.h>
|
1991-10-11 10:45:56 +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-07-15 16:06:03 +00:00
|
|
|
#include <alloca.h>
|
1991-10-11 10:45:56 +00:00
|
|
|
#ifndef O_ACCMODE
|
|
|
|
#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
|
|
|
|
#endif
|
|
|
|
#define SEEK_SET 0
|
|
|
|
#define SEEK_CUR 1
|
|
|
|
|
|
|
|
/* Make the basic types 64-bit quantities on the host */
|
|
|
|
#define HOST_64_BIT long long
|
|
|
|
|
1993-08-03 06:36:30 +00:00
|
|
|
extern int abort PARAMS ((void));
|
|
|
|
extern int close PARAMS ((int));
|
|
|
|
extern int fcntl PARAMS ((int des, int cmd, int e));
|
|
|
|
extern int fprintf PARAMS ((FILE *,char *,...));
|
|
|
|
extern int printf PARAMS ((char *,...));
|
|
|
|
extern int qsort PARAMS ((void *data, int els, int siz, int func()));
|
|
|
|
extern void exit PARAMS ((int));
|
|
|
|
extern int fseek PARAMS ((FILE*, int, int));
|
|
|
|
extern int fclose PARAMS ((FILE*));
|
|
|
|
extern void bcopy PARAMS ((char*, char*, int));
|
|
|
|
extern int bcmp PARAMS ((char *, char *, int));
|
|
|
|
extern void bzero PARAMS ((char *, int));
|
|
|
|
extern PTR memset PARAMS ((PTR, int, unsigned int));
|
1992-03-13 15:57:41 +00:00
|
|
|
#ifndef DONTDECLARE_MALLOC
|
1993-08-03 06:36:30 +00:00
|
|
|
extern PTR malloc PARAMS ((unsigned));
|
|
|
|
extern PTR realloc PARAMS ((PTR, unsigned));
|
1992-03-13 15:57:41 +00:00
|
|
|
#endif
|
|
|
|
|
1991-10-11 10:45:56 +00:00
|
|
|
#ifndef __GNUC__
|
1993-08-03 06:36:30 +00:00
|
|
|
PTR memcpy PARAMS ((PTR, CONST PTR, unsigned int));
|
1991-10-11 10:45:56 +00:00
|
|
|
#else
|
1993-08-03 06:36:30 +00:00
|
|
|
/* char * memcpy PARAMS ((char *, CONST char *, unsigned int)); */
|
1991-10-11 10:45:56 +00:00
|
|
|
#endif
|
|
|
|
|
1993-08-03 06:36:30 +00:00
|
|
|
extern int getuid PARAMS (());
|
|
|
|
extern int getgid PARAMS (());
|
1991-10-11 10:45:56 +00:00
|
|
|
extern char * strchr();
|
1993-08-03 06:36:30 +00:00
|
|
|
extern void perror PARAMS ((CONST char *));
|
1991-10-11 10:45:56 +00:00
|
|
|
extern char *getenv();
|
|
|
|
extern char *memchr();
|
|
|
|
extern char *strrchr();
|
|
|
|
extern int chmod();
|
|
|
|
extern int fread();
|
|
|
|
extern int fstat();
|
|
|
|
extern int fwrite();
|
|
|
|
extern int sscanf();
|
|
|
|
extern int stat();
|
|
|
|
extern int strtol();
|
|
|
|
|
1993-08-03 06:36:30 +00:00
|
|
|
extern int free PARAMS ((PTR));
|
1991-10-11 10:45:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
extern char *strrchr();
|
|
|
|
extern char *ctime();
|
|
|
|
extern int _flsbuf();
|
|
|
|
extern int fclose();
|
|
|
|
extern int time();
|
|
|
|
extern int utimes();
|
|
|
|
extern int vfprintf();
|
|
|
|
extern long atol();
|
|
|
|
extern char *getenv();
|
|
|
|
extern int fputc();
|
|
|
|
extern int unlink();
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
typedef unsigned long long uint64e_type;
|
|
|
|
|
|
|
|
#else
|
|
|
|
typedef struct {
|
1993-06-18 10:29:14 +00:00
|
|
|
unsigned long low, high;
|
1991-10-11 10:45:56 +00:00
|
|
|
} uint64e_type;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
typedef unsigned long long uint64_type;
|
|
|
|
typedef long long int64_type;
|
|
|
|
#else
|
|
|
|
typedef struct {
|
1993-06-18 10:29:14 +00:00
|
|
|
unsigned long low, high;
|
1991-10-11 10:45:56 +00:00
|
|
|
} uint64_type;
|
|
|
|
|
|
|
|
typedef struct {
|
1993-06-18 10:29:14 +00:00
|
|
|
unsigned long low, high;
|
1991-10-11 10:45:56 +00:00
|
|
|
} int64_type;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define BYTES_IN_PRINTF_INT 4
|
|
|
|
#ifndef __GNUC__
|
1993-06-18 10:29:14 +00:00
|
|
|
#define uint64_typeLOW(x) (unsigned long)(((x).low))
|
|
|
|
#define uint64_typeHIGH(x) (unsigned long)(((x).high))
|
1991-10-11 10:45:56 +00:00
|
|
|
#else
|
1993-06-18 10:29:14 +00:00
|
|
|
#define uint64_typeLOW(x) (unsigned long)(((x) & 0xffffffff))
|
|
|
|
#define uint64_typeHIGH(x) (unsigned long)(((x) >> 32) & 0xffffffff)
|
1991-10-11 10:45:56 +00:00
|
|
|
#endif
|
1993-06-18 10:29:14 +00:00
|
|
|
|
1991-12-13 05:03:17 +00:00
|
|
|
#include "fopen-same.h"
|