Sun Aug 1 22:54:08 1993 Stu Grossman (grossman at cygnus.com)
[deliverable/binutils-gdb.git] / bfd / hosts / sparc-ll.h
... / ...
CommitLineData
1/* Host definition file for Sun-4 running with gcc, using "long long"
2 for addresses, to handle 64-bit target systems. */
3#include <ansidecl.h>
4#include <fcntl.h>
5#include <errno.h>
6#include <stdio.h>
7#include <sys/types.h>
8#include <sys/stat.h>
9#include <ctype.h>
10#include <string.h>
11#include <sys/file.h>
12#include <alloca.h>
13#ifndef O_ACCMODE
14#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
15#endif
16#define SEEK_SET 0
17#define SEEK_CUR 1
18
19/* Make the basic types 64-bit quantities on the host */
20#define HOST_64_BIT long long
21
22extern int EXFUN(abort,(void));
23extern int EXFUN(close,(int));
24extern int EXFUN(fcntl,(int des, int cmd, int e));
25extern int EXFUN(fprintf,(FILE *,char *,...));
26extern int EXFUN(printf,(char *,...));
27extern int EXFUN(qsort,(void *data,int els, int siz, int func()));
28extern void EXFUN(exit,(int));
29extern int EXFUN(fseek,(FILE*, int, int));
30extern int EXFUN(fclose,(FILE*));
31extern void EXFUN(bcopy,(char*,char*,int));
32extern int EXFUN(bcmp,(char *, char *, int));
33extern void EXFUN(bzero,(char *, int));
34extern PTR EXFUN(memset,(PTR, int,unsigned int));
35#ifndef DONTDECLARE_MALLOC
36extern PTR EXFUN(malloc,(unsigned));
37extern PTR EXFUN(realloc, (PTR, unsigned));
38#endif
39
40#ifndef __GNUC__
41 PTR EXFUN(memcpy,(PTR,CONST PTR,unsigned int));
42#else
43/* char * EXFUN(memcpy,(char *,CONST char *,unsigned int)); */
44#endif
45
46extern int EXFUN(getuid,());
47extern int EXFUN(getgid,());
48extern char * strchr();
49extern void EXFUN(perror,(CONST char *));
50extern char *getenv();
51extern char *memchr();
52extern char *strrchr();
53extern int chmod();
54extern int fread();
55extern int fstat();
56extern int fwrite();
57extern int sscanf();
58extern int stat();
59extern int strtol();
60
61extern int EXFUN(free,(PTR));
62
63
64extern char *strrchr();
65extern char *ctime();
66extern int _flsbuf();
67extern int fclose();
68extern int time();
69extern int utimes();
70extern int vfprintf();
71extern long atol();
72extern char *getenv();
73extern int fputc();
74extern int unlink();
75
76
77#ifdef __GNUC__
78typedef unsigned long long uint64e_type;
79
80#else
81typedef struct {
82 unsigned long low, high;
83} uint64e_type;
84
85#endif
86
87#ifdef __GNUC__
88typedef unsigned long long uint64_type;
89typedef long long int64_type;
90#else
91typedef struct {
92 unsigned long low, high;
93} uint64_type;
94
95typedef struct {
96 unsigned long low, high;
97} int64_type;
98
99#endif
100
101#define BYTES_IN_PRINTF_INT 4
102#ifndef __GNUC__
103#define uint64_typeLOW(x) (unsigned long)(((x).low))
104#define uint64_typeHIGH(x) (unsigned long)(((x).high))
105#else
106#define uint64_typeLOW(x) (unsigned long)(((x) & 0xffffffff))
107#define uint64_typeHIGH(x) (unsigned long)(((x) >> 32) & 0xffffffff)
108#endif
109
110#include "fopen-same.h"
This page took 0.022198 seconds and 4 git commands to generate.