diff options
Diffstat (limited to 'gcc/ada/adaint.h')
-rw-r--r-- | gcc/ada/adaint.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/adaint.h b/gcc/ada/adaint.h index c53a8bf..0ec9dd2 100644 --- a/gcc/ada/adaint.h +++ b/gcc/ada/adaint.h @@ -51,7 +51,7 @@ extern "C" { determine at compile time what support the system offers for large files. For now we just list the platforms we have manually tested. */ -#if defined (__GLIBC__) || defined (sun) +#if defined (__GLIBC__) || defined (__sun__) #define GNAT_FOPEN fopen64 #define GNAT_OPEN open64 #define GNAT_STAT stat64 @@ -279,10 +279,10 @@ extern char * __gnat_locate_file_with_predicate (char *, char *, int (*)(char*)); #if defined (__ANDROID__) -#undef linux +#undef __linux__ extern void *__gnat_lwp_self (void); -#elif defined (linux) +#elif defined (__linux__) extern void *__gnat_lwp_self (void); /* Routines for interface to required CPU set primitives */ |