From 8252a465b9bb7c2df6954163de046ceb4ac383dd Mon Sep 17 00:00:00 2001 From: Dmitrij Tejblum Date: Sat, 19 Dec 1998 00:02:34 +0000 Subject: Little reorganization: - created internal names for fixed-size integral types, like __int32_t. They will be used to make several headers self-sufficient. - don't include anymore. - created , which can be used as . - declaration of uoff_t and ufs_daddr_t moved to . Reviewed by: bde --- include/stdlib.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'include/stdlib.h') diff --git a/include/stdlib.h b/include/stdlib.h index a78dafa5dbf3..db30a5abc900 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -41,8 +41,6 @@ #include #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE) -#include - #ifdef _BSD_RUNE_T_ typedef _BSD_RUNE_T_ rune_t; #undef _BSD_RUNE_T_ @@ -132,7 +130,7 @@ void srand48 __P((long)); void *alloca __P((size_t)); /* built-in for gcc */ /* getcap(3) functions */ -u_int32_t +__uint32_t arc4random __P((void)); void arc4random_addrandom __P((unsigned char *dat, int datlen)); void arc4random_stir __P((void)); @@ -170,8 +168,8 @@ void srandom __P((unsigned long)); void srandomdev __P((void)); char *user_from_uid __P((unsigned long, int)); #ifndef __STRICT_ANSI__ -int64_t strtoq __P((const char *, char **, int)); -u_int64_t +__int64_t strtoq __P((const char *, char **, int)); +__uint64_t strtouq __P((const char *, char **, int)); #endif void unsetenv __P((const char *)); -- cgit v1.3