diff options
author | Jeff Law <law@gcc.gnu.org> | 1996-07-08 14:29:33 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1996-07-08 14:29:33 -0600 |
commit | 8343b898b93c9d2f89154b58315592d217e37f66 (patch) | |
tree | 3901ecf89bfe9f350e3a10dfce1325e2cad0580f /gcc/ginclude/stdarg.h | |
parent | 5a41511952dac184713f95646c6e81a96b9128ae (diff) | |
download | gcc-8343b898b93c9d2f89154b58315592d217e37f66.zip gcc-8343b898b93c9d2f89154b58315592d217e37f66.tar.gz gcc-8343b898b93c9d2f89154b58315592d217e37f66.tar.bz2 |
stdarg.h: Handle the H8/S.
* ginclude/stdarg.h: Handle the H8/S.
* ginclude/varargs.h: Likewise.
From-SVN: r12409
Diffstat (limited to 'gcc/ginclude/stdarg.h')
-rw-r--r-- | gcc/ginclude/stdarg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ginclude/stdarg.h b/gcc/ginclude/stdarg.h index 8eaa53c..025694e 100644 --- a/gcc/ginclude/stdarg.h +++ b/gcc/ginclude/stdarg.h @@ -35,7 +35,7 @@ #ifdef __alpha__ #include <va-alpha.h> #else -#if defined (__H8300__) || defined (__H8300H__) +#if defined (__H8300__) || defined (__H8300H__) || defined (__H8300S__) #include <va-h8300.h> #else #if defined (__PPC__) && defined (_CALL_SYSV) |