diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-08-20 22:59:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-08-20 22:59:31 +0000 |
commit | 0695b00cef7d8349bc16e61e62189f185926fdff (patch) | |
tree | 6f793586bf853b00b12f26af11bc383f709afbe3 /libio | |
parent | 8e48355c5b6d9fab85e1179367db3df34b9e9d71 (diff) | |
download | glibc-0695b00cef7d8349bc16e61e62189f185926fdff.tar.gz glibc-0695b00cef7d8349bc16e61e62189f185926fdff.tar.xz glibc-0695b00cef7d8349bc16e61e62189f185926fdff.zip |
(_IO_pos_BAD): Define of type _IO_fpos64_t.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/iolibio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/iolibio.h b/libio/iolibio.h index ec54d639a6..0ec485eaec 100644 --- a/libio/iolibio.h +++ b/libio/iolibio.h @@ -47,7 +47,7 @@ extern int _IO_obstack_vprintf __P ((struct obstack *, const char *, _IO_va_list)); extern int _IO_obstack_printf __P ((struct obstack *, const char *, ...)); #ifndef _IO_pos_BAD -#define _IO_pos_BAD ((_IO_fpos_t)(-1)) +#define _IO_pos_BAD ((_IO_fpos64_t)(-1)) #endif #define _IO_clearerr(FP) ((FP)->_flags &= ~(_IO_ERR_SEEN|_IO_EOF_SEEN)) #define _IO_fseek(__fp, __offset, __whence) \ |