2007-09-07 Jeff Johnston <jjohnstn@redhat.com>

* libc/sys/linux/sys/_types.h: Add _fpos_t and _fpos64_t
        definitions in light of the previous change.
This commit is contained in:
Jeff Johnston 2007-09-07 21:18:03 +00:00
parent dde223343c
commit 36fe6da675
2 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,9 @@
2007-09-07 Patrick Mansfield <patmans@us.ibm.com>
2007-09-07 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/sys/_types.h: Add _fpos_t and _fpos64_t
definitions in light of the previous change.
2007-09-07 Patrick Mansfield <patmans@us.ibm.com>
* libc/include/machine/_default_types.h: New file, contains what
was previously in libc/include/machine/_types.h.

View File

@ -12,6 +12,9 @@
typedef long _off_t;
__extension__ typedef long long _off64_t;
typedef long _fpos_t;
__extension__ typedef long long _fpos64_t;
#if defined(__INT_MAX__) && __INT_MAX__ == 2147483647
typedef int _ssize_t;
#else