OSDN Git Service

2007-09-07 Jeff Johnston <jjohnstn@redhat.com>
authorjjohnstn <jjohnstn>
Fri, 7 Sep 2007 21:18:03 +0000 (21:18 +0000)
committerjjohnstn <jjohnstn>
Fri, 7 Sep 2007 21:18:03 +0000 (21:18 +0000)
        * libc/sys/linux/sys/_types.h: Add _fpos_t and _fpos64_t
        definitions in light of the previous change.

newlib/ChangeLog
newlib/libc/sys/linux/sys/_types.h

index d37db6e..b72f568 100644 (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.
index 994df89..1ad429d 100644 (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