diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-10-09 15:09:32 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-10-09 15:09:32 +0000 |
commit | c8450f70fa7e68519d015ba9497f59645ba7ed3a (patch) | |
tree | 22154e54436a495c3e05d7887c7e137d711e83ec /libio/oldfileops.c | |
parent | 57e605ba50a42e1e5adc0f020f3752e80f117c10 (diff) | |
download | glibc-c8450f70fa7e68519d015ba9497f59645ba7ed3a.tar.gz glibc-c8450f70fa7e68519d015ba9497f59645ba7ed3a.tar.xz glibc-c8450f70fa7e68519d015ba9497f59645ba7ed3a.zip |
Remove _G_off64_t and _G_stat64 from _G_config.h.
Diffstat (limited to 'libio/oldfileops.c')
-rw-r--r-- | libio/oldfileops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/oldfileops.c b/libio/oldfileops.c index 8fda0484aa..aa4e3f5f91 100644 --- a/libio/oldfileops.c +++ b/libio/oldfileops.c @@ -530,7 +530,7 @@ _IO_old_file_seekoff (fp, offset, dir, mode) break; case _IO_seek_end: { - struct _G_stat64 st; + struct stat64 st; if (_IO_SYSSTAT (fp, &st) == 0 && S_ISREG (st.st_mode)) { offset += st.st_size; |