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:
parent
dde223343c
commit
36fe6da675
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue