Sun Aug 1 22:54:08 1993 Stu Grossman (grossman at cygnus.com)
[deliverable/binutils-gdb.git] / bfd / hosts / alphaosf.h
index d8454f00309716b9ca54f8e9c42539b162aad4a7..ab6687352efb4cd6980f79b11b46472aa2e718a1 100644 (file)
@@ -7,44 +7,17 @@
 #include <string.h>
 #include <sys/file.h>
 #include <alloca.h>
+#include <stdlib.h>
 
 /* Make the basic types 64-bit quantities on the host */
 #define        HOST_64_BIT     long 
-#ifndef DONTDECLARE_MALLOC
-extern PTR  EXFUN(malloc,(unsigned));
-extern PTR  EXFUN(realloc, (PTR, unsigned));
-#endif
-
-
-
-/* EXACT TYPES */
-typedef char int8e_type;
-typedef unsigned char uint8e_type;
-typedef short int16e_type;
-typedef unsigned short uint16e_type;
-typedef int int32e_type;
-typedef unsigned int uint32e_type;
-
-
 
 typedef unsigned  long uint64e_type;
-
-
-/* CORRECT SIZE OR GREATER */
-typedef char int8_type;
-typedef unsigned char uint8_type;
-typedef short int16_type;
-typedef unsigned short uint16_type;
-typedef int int32_type;
-typedef unsigned int uint32_type;
-
-
 typedef unsigned  long uint64_type;
 typedef  long int64_type;
 
-
 #define BYTES_IN_PRINTF_INT 4
 
-#define uint64_typeLOW(x) (uint32_type)(((x) & 0xffffffff))
-#define uint64_typeHIGH(x) (uint32_type)(((x) >> 32) & 0xffffffff)
+#define uint64_typeLOW(x) (((x) & 0xffffffff))
+#define uint64_typeHIGH(x) (((x) >> 32) & 0xffffffff)
 #include "fopen-same.h"
This page took 0.023367 seconds and 4 git commands to generate.