diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-02-13 14:29:44 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-02-13 14:29:44 +0000 |
commit | 1e79f32d04a6a04dd6002185656c2a669420cf63 (patch) | |
tree | ca11e0f752925858a83e459410c021b288e8e869 /gcc/fixinc.svr4 | |
parent | 8f986f3b93576e10505a38fba91d99b5f55c4db3 (diff) | |
download | gcc-1e79f32d04a6a04dd6002185656c2a669420cf63.tar.gz |
(longlong_t, u_longlong_t): Work around bug in Solaris 2.4
<sys/types.h>.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8926 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixinc.svr4')
-rwxr-xr-x | gcc/fixinc.svr4 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/fixinc.svr4 b/gcc/fixinc.svr4 index c4650373305..658243d979d 100755 --- a/gcc/fixinc.svr4 +++ b/gcc/fixinc.svr4 @@ -188,6 +188,7 @@ while [ $# != 0 ]; do s/__STDC__[ ][ ]*==[ ][ ]*1/defined (__STRICT_ANSI__)/g s/__STDC__[ ][ ]*!=[ ][ ]*0/defined (__STRICT_ANSI__)/g s/__STDC__ - 0 == 0/!defined (__STRICT_ANSI__)/g + /^typedef[ ][ ]*[unsigned ]*long[ ][ ]*[u_]*longlong_t;/s/long/long long/ ' $2/$file > $2/$file.sed mv $2/$file.sed $2/$file if cmp $file $2/$file >/dev/null 2>&1; then |