diff options
author | Richard Stallman <rms@gnu.org> | 1993-05-13 12:34:36 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-05-13 12:34:36 +0000 |
commit | 36d5f78c02e9f06a56c0a0bd17e9e69ad632de59 (patch) | |
tree | 3ae5eada888180cc31293d556979579e4fb36cc7 /gcc/objc | |
parent | 4465943940128dd37c45a545e487599c10dff87f (diff) | |
download | gcc-36d5f78c02e9f06a56c0a0bd17e9e69ad632de59.zip gcc-36d5f78c02e9f06a56c0a0bd17e9e69ad632de59.tar.gz gcc-36d5f78c02e9f06a56c0a0bd17e9e69ad632de59.tar.bz2 |
Include gstdarg.h before stdio.h.
From-SVN: r4435
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/runtime.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/objc/runtime.h b/gcc/objc/runtime.h index 936aa44..cd9de6a 100644 --- a/gcc/objc/runtime.h +++ b/gcc/objc/runtime.h @@ -27,10 +27,11 @@ You should have received a copy of the GNU General Public License along with #ifndef __objc_runtime_INCLUDE_GNU #define __objc_runtime_INCLUDE_GNU +#include "gstdarg.h" /* for varargs and va_list's */ + #include <stdio.h> #include <ctype.h> -#include "gstdarg.h" /* for varargs and va_list's */ #include "gstddef.h" /* so noone else will get system versions */ #include "assert.h" |