diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2015-05-30 21:13:59 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2015-05-30 21:13:59 +0000 |
commit | 329be64b06b51c21981dc9aba66da805dc4398bf (patch) | |
tree | 939ed8411c661f6e8dcf7ab478a1cc1abfa98185 /gcc/ada/cstreams.c | |
parent | c67e8801d95237cf126a5b8ad6c2f59fc92c455a (diff) | |
download | gcc-329be64b06b51c21981dc9aba66da805dc4398bf.zip gcc-329be64b06b51c21981dc9aba66da805dc4398bf.tar.gz gcc-329be64b06b51c21981dc9aba66da805dc4398bf.tar.bz2 |
adaint.c: Test for __linux__ instead of linux and __sun__ instead of sun.
* adaint.c: Test for __linux__ instead of linux and __sun__ instead
of sun. Add missing leading underscore to AIX. Remove #elif 0.
* adaint.h: Likewise.
* cio.c: Likewise.
* cstreams.c: Likewise.
* env.c: Likewise.
* gsocket.h: Likewise.
* init.c: Likewise. Test for __i386__ instead of i386.
* link.c: Likewise.
* s-oscons-tmplt.c: Likewise.
* sysdep.c: Likewise.
* terminals.c: Likewise. Use BSD symbol instead of FREEBSD.
* tracebak.c: Likewise. Test for __sparc__ instead of sparc.
From-SVN: r223890
Diffstat (limited to 'gcc/ada/cstreams.c')
-rw-r--r-- | gcc/ada/cstreams.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/cstreams.c b/gcc/ada/cstreams.c index f7652e3..16b61c9 100644 --- a/gcc/ada/cstreams.c +++ b/gcc/ada/cstreams.c @@ -69,7 +69,7 @@ extern "C" { #include <unixlib.h> #endif -#ifdef linux +#ifdef __linux__ /* Don't use macros on GNU/Linux since they cause incompatible changes between glibc 2.0 and 2.1 */ @@ -277,8 +277,8 @@ __gnat_fseek64 (FILE *stream, __int64 offset, int origin) return _fseeki64 (stream, offset, origin); } -#elif defined(linux) || defined(sun) \ - || defined (__FreeBSD__) || defined(__APPLE__) +#elif defined (__linux__) || defined (__sun__) || defined (__FreeBSD__) \ + || defined (__APPLE__) /* section for platforms having ftello/fseeko */ __int64 |