mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
96ad107bcc
sparclynx.c, Makefile.in: Change HOST_64_BIT to BFD_HOST_64_BIT.
112 lines
2.6 KiB
C
112 lines
2.6 KiB
C
/* Host definition file for Sun-4 running with gcc, using "long long"
|
|
for addresses, to handle 64-bit target systems. */
|
|
#include <stddef.h>
|
|
#include <ansidecl.h>
|
|
#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 <alloca.h>
|
|
#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 BFD_HOST_64_BIT long long
|
|
|
|
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));
|
|
#ifndef DONTDECLARE_MALLOC
|
|
extern PTR malloc PARAMS ((unsigned));
|
|
extern PTR realloc PARAMS ((PTR, unsigned));
|
|
#endif
|
|
|
|
#ifndef __GNUC__
|
|
PTR memcpy PARAMS ((PTR, CONST PTR, unsigned int));
|
|
#else
|
|
/* char * memcpy PARAMS ((char *, CONST char *, unsigned int)); */
|
|
#endif
|
|
|
|
extern int getuid PARAMS (());
|
|
extern int getgid PARAMS (());
|
|
extern char * strchr();
|
|
extern void perror PARAMS ((CONST char *));
|
|
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();
|
|
|
|
extern int free PARAMS ((PTR));
|
|
|
|
|
|
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 {
|
|
unsigned long low, high;
|
|
} uint64e_type;
|
|
|
|
#endif
|
|
|
|
#ifdef __GNUC__
|
|
typedef unsigned long long uint64_type;
|
|
typedef long long int64_type;
|
|
#else
|
|
typedef struct {
|
|
unsigned long low, high;
|
|
} uint64_type;
|
|
|
|
typedef struct {
|
|
unsigned long low, high;
|
|
} int64_type;
|
|
|
|
#endif
|
|
|
|
#define BYTES_IN_PRINTF_INT 4
|
|
#ifndef __GNUC__
|
|
#define uint64_typeLOW(x) (unsigned long)(((x).low))
|
|
#define uint64_typeHIGH(x) (unsigned long)(((x).high))
|
|
#else
|
|
#define uint64_typeLOW(x) (unsigned long)(((x) & 0xffffffff))
|
|
#define uint64_typeHIGH(x) (unsigned long)(((x) >> 32) & 0xffffffff)
|
|
#endif
|
|
|
|
#include "fopen-same.h"
|