diff options
author | Dave Korn <dave.korn.cygwin@gmail.com> | 2009-07-26 15:09:10 +0000 |
---|---|---|
committer | Dave Korn <davek@gcc.gnu.org> | 2009-07-26 15:09:10 +0000 |
commit | f6c7fcc0d57109c145195175cad0c7d433b1f39a (patch) | |
tree | 031a5480960c46b8ab269e374fa54532a3f89cef /gcc/ada/cstreams.c | |
parent | c2600c676cfe1b90c6536476c3dbf887953fcc50 (diff) | |
download | gcc-f6c7fcc0d57109c145195175cad0c7d433b1f39a.zip gcc-f6c7fcc0d57109c145195175cad0c7d433b1f39a.tar.gz gcc-f6c7fcc0d57109c145195175cad0c7d433b1f39a.tar.bz2 |
re PR bootstrap/40578 (FOPEN double defined used in ada/adaint.h:58)
PR bootstrap/40578
* adaint.h (FOPEN, STAT, FSTAT, LSTAT, STRUCT_STAT): Rename from these
(GNAT_FOPEN, GNAT_STAT, GNAT_FSTAT, GNAT_LSTAT, GNAT_STRUCT_STAT): ...
to these.
(__gnat_stat): Adjust reference to STAT in prototype.
* adaint.c (__gnat_try_lock, __gnat_fopen, __gnat_file_length,
__gnat_named_file_length, __gnat_file_time_name, __gnat_file_time_fd,
__gnat_get_libraries_from_registry, __gnat_stat, __gnat_file_exists,
__gnat_is_regular_file, __gnat_is_directory, __gnat_is_readable_file,
__gnat_is_writable_file, __gnat_is_executable_file,
__gnat_set_writable, __gnat_set_executable, __gnat_set_non_writable,
__gnat_set_readable, __gnat_set_non_readable, __gnat_is_symbolic_link,
__gnat_copy_attribs): Adjust all references to the above.
* cstreams.c (__gnat_is_regular_file_fd): Likewise.
From-SVN: r150098
Diffstat (limited to 'gcc/ada/cstreams.c')
-rw-r--r-- | gcc/ada/cstreams.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/cstreams.c b/gcc/ada/cstreams.c index 2177fdc..d57b382 100644 --- a/gcc/ada/cstreams.c +++ b/gcc/ada/cstreams.c @@ -96,7 +96,7 @@ int __gnat_is_regular_file_fd (int fd) { int ret; - STRUCT_STAT statbuf; + GNAT_STRUCT_STAT statbuf; #ifdef __EMX__ /* Programs using screen I/O may need to reset the FPU after @@ -107,7 +107,7 @@ __gnat_is_regular_file_fd (int fd) __gnat_init_float(); #endif - ret = FSTAT (fd, &statbuf); + ret = GNAT_FSTAT (fd, &statbuf); return (!ret && S_ISREG (statbuf.st_mode)); } |