summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2007-09-07 21:18:03 +0000
committerJeff Johnston <jjohnstn@redhat.com>2007-09-07 21:18:03 +0000
commit36fe6da675b074a990dd6b115658d744481437b3 (patch)
treef557cbcb9cc2bff79ccb73f3160b6a4323f6fba8 /newlib/libc/sys
parentdde223343c2cd08f4ac1973134dc9a409a6829f2 (diff)
downloadcygnal-36fe6da675b074a990dd6b115658d744481437b3.tar.gz
cygnal-36fe6da675b074a990dd6b115658d744481437b3.tar.bz2
cygnal-36fe6da675b074a990dd6b115658d744481437b3.zip
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.
Diffstat (limited to 'newlib/libc/sys')
-rw-r--r--newlib/libc/sys/linux/sys/_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/newlib/libc/sys/linux/sys/_types.h b/newlib/libc/sys/linux/sys/_types.h
index 994df899a..1ad429dba 100644
--- a/newlib/libc/sys/linux/sys/_types.h
+++ b/newlib/libc/sys/linux/sys/_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