add basic data types
[unix-history] / usr / src / sys / vax / include / types.h
index d81ee9d..b5b5c10 100644 (file)
@@ -4,36 +4,31 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)types.h     7.4 (Berkeley) %G%
+ *     @(#)types.h     7.6 (Berkeley) %G%
  */
 
 #ifndef        _MACHTYPES_H_
 #define        _MACHTYPES_H_
 
  */
 
 #ifndef        _MACHTYPES_H_
 #define        _MACHTYPES_H_
 
-/*
- * Types which are fundamental to the implementation and may appear in
- * more than one standard header are defined here.  Standard headers
- * then use:
- *     #ifdef  _SIZE_T_
- *     typedef _SIZE_T_ size_t;
- *     #undef  _SIZE_T_
- *     #endif
- *
- * Thanks, ANSI!
- */
-#define        _CLOCK_T_       unsigned long           /* clock() */
-#define        _PTRDIFF_T_     int                     /* ptr1 - ptr2 */
-#define        _SIZE_T_        unsigned int            /* sizeof() */
-#define        _TIME_T_        long                    /* time() */
-#define        _VA_LIST_       char *                  /* va_list */
-#define        _WCHAR_T_       unsigned short          /* wchar_t */
-
-#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
 typedef struct _physadr {
        int r[1];
 } *physadr;
 typedef struct _physadr {
        int r[1];
 } *physadr;
+
 typedef struct label_t {
        int val[14];
 } label_t;
 typedef struct label_t {
        int val[14];
 } label_t;
+
+#ifdef __GNUC__
+typedef        char                    s1byte_t;       /* Basic data types. */
+typedef        unsigned char           u1byte_t;
+typedef        short                   s2byte_t;
+typedef        unsigned short          u2byte_t;
+typedef        long                    s4byte_t;
+typedef        unsigned long           u4byte_t;
+typedef        long long               s8byte_t;
+typedef        unsigned long long      u8byte_t;
+typedef        float                   f4byte_t;
+typedef        double                  f8byte_t;
 #endif
 #endif
+
 #endif /* _MACHTYPES_H_ */
 #endif /* _MACHTYPES_H_ */