diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-05 21:09:16 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-05 21:09:16 +0000 |
commit | 9798ee2f93a94f05d37ceb446355ea430eaefbea (patch) | |
tree | fa25bad4beaf0aa92709edc4e82ec2ad2f5cf5e1 /sys/arch/pc532 | |
parent | 7e384b023b87acba80d4cb452f17d7b563b4ed7d (diff) |
Make _BSD_TIME_T_ int32_t on all platforms. You can't write
lint-free code when these differ in name accross platforms.
Fundamnetal type has not changed (was int on alpha and long on others).
Diffstat (limited to 'sys/arch/pc532')
-rw-r--r-- | sys/arch/pc532/include/ansi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/pc532/include/ansi.h b/sys/arch/pc532/include/ansi.h index 8042e321ce4..e6881069570 100644 --- a/sys/arch/pc532/include/ansi.h +++ b/sys/arch/pc532/include/ansi.h @@ -51,7 +51,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ long /* time() */ +#define _BSD_TIME_T_ int32_t /* time() */ #define _BSD_VA_LIST_ char * /* va_list */ #define _BSD_CLOCKID_T_ int #define _BSD_TIMER_T_ int |