diff options
author | Richard Stallman <rms@gnu.org> | 1992-09-12 01:10:28 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-09-12 01:10:28 +0000 |
commit | bb3facc561fb0822545e1a8748be14650f3d1086 (patch) | |
tree | a0fc84e43fb89ae39c143c3d4d6ea176c2976803 /gcc | |
parent | d847e6a7b522b519a90cce02c19e17b4abbedeb8 (diff) | |
download | gcc-bb3facc561fb0822545e1a8748be14650f3d1086.zip gcc-bb3facc561fb0822545e1a8748be14650f3d1086.tar.gz gcc-bb3facc561fb0822545e1a8748be14650f3d1086.tar.bz2 |
(va_alist): Supply `int' as the type to define it as.
From-SVN: r2109
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/sys-types.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/sys-types.h b/gcc/sys-types.h index dd583d9..36c4680 100644 --- a/gcc/sys-types.h +++ b/gcc/sys-types.h @@ -86,6 +86,10 @@ union wait; #include "gstddef.h" /* #include "sys/types.h" */ + +/* The actual types used here are mostly wrong, + but it is not supposed to matter what types we use here. */ + typedef int dev_t; typedef int pid_t; typedef int gid_t; @@ -161,7 +165,7 @@ typedef int ushort; typedef int ulong; typedef int uint; -typedef va_list; +typedef int va_list; typedef int archdr; typedef int AUTH; |