diff options
author | obrien <obrien@FreeBSD.org> | 2001-01-01 22:26:56 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-01-01 22:26:56 +0000 |
commit | 65921c45f66bcf2cbd700a660597637e1166ed79 (patch) | |
tree | e0d897a00a374e920064c6817c4bde658ca1f356 /sys | |
parent | 468ec92a65baa347c8dc98f2f5694ebca0f5e4f7 (diff) | |
download | FreeBSD-src-65921c45f66bcf2cbd700a660597637e1166ed79.zip FreeBSD-src-65921c45f66bcf2cbd700a660597637e1166ed79.tar.gz |
Sort some of the _BSD_* types.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/alpha/include/ansi.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/alpha/include/ansi.h b/sys/alpha/include/ansi.h index 9eaf663..1c60857 100644 --- a/sys/alpha/include/ansi.h +++ b/sys/alpha/include/ansi.h @@ -49,20 +49,20 @@ * #endif */ #define _BSD_CLOCK_T_ int /* clock() */ +#define _BSD_CLOCKID_T_ int /* clockid_t */ #define _BSD_PTRDIFF_T_ long /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned long /* sizeof() */ #define _BSD_SSIZE_T_ long /* byte count or error */ +#define _BSD_SUSECONDS_T_ int /* suseconds_t */ #define _BSD_TIME_T_ int /* time() */ +#define _BSD_TIMER_T_ int /* timer_t */ +#define _BSD_USECONDS_T_ unsigned int /* useconds_t */ typedef struct { char *__base; int __offset; int __pad; } __va_list; #define _BSD_VA_LIST_ __va_list /* va_list */ -#define _BSD_CLOCKID_T_ int /* clockid_t */ -#define _BSD_TIMER_T_ int /* timer_t */ -#define _BSD_SUSECONDS_T_ int /* suseconds_t */ -#define _BSD_USECONDS_T_ unsigned int /* useconds_t */ /* * Types which are fundamental to the implementation and must be used |