diff options
author | rofl0r <retnyg@gmx.net> | 2013-04-02 04:38:23 +0200 |
---|---|---|
committer | rofl0r <retnyg@gmx.net> | 2013-04-02 04:58:14 +0200 |
commit | 47cf4919fc834a917185ace26dfd1c2ab760676d (patch) | |
tree | 550f769007141b9278c71182b6b6f3dd4720edde /arch/i386/bits | |
parent | 82aad3a31726feb29981846886a17fceee605287 (diff) | |
download | musl-47cf4919fc834a917185ace26dfd1c2ab760676d.tar.gz musl-47cf4919fc834a917185ace26dfd1c2ab760676d.tar.bz2 musl-47cf4919fc834a917185ace26dfd1c2ab760676d.tar.xz musl-47cf4919fc834a917185ace26dfd1c2ab760676d.zip |
re-add useconds_t
this type was removed back in 5243e5f1606a9c6fcf01414e ,
because it was removed from the XSI specs.
however some apps use it.
since it's in the POSIX reserved namespace, we can expose it
unconditionally.
Diffstat (limited to 'arch/i386/bits')
-rwxr-xr-x | arch/i386/bits/alltypes.h.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/i386/bits/alltypes.h.sh b/arch/i386/bits/alltypes.h.sh index 13def835..579aa1af 100755 --- a/arch/i386/bits/alltypes.h.sh +++ b/arch/i386/bits/alltypes.h.sh @@ -74,6 +74,7 @@ TYPEDEF long double double_t; TYPEDEF long time_t; TYPEDEF int suseconds_t; +TYPEDEF unsigned useconds_t; STRUCT timeval { time_t tv_sec; int tv_usec; }; STRUCT timespec { time_t tv_sec; long tv_nsec; }; |