Remove seconds types we don't use that came in thru the NetBSD heiratage.

This commit is contained in:
David E. O'Brien 2001-01-08 06:17:11 +00:00
parent 30400f03aa
commit 2590b31beb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70786
4 changed files with 5 additions and 6 deletions

View File

@ -53,16 +53,19 @@
#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 */
#if defined __GNUC__ && (__GNUC__ > 2 || __GNUC_MINOR__ > 95)
#define _BSD_VA_LIST_ __builtin_va_list /* internally known to gcc */
#else
typedef struct {
char *__base;
int __offset;
int __pad;
} __va_list;
#define _BSD_VA_LIST_ __va_list /* va_list */
#endif /*__GNUC__*/
/*
* Types which are fundamental to the implementation and must be used

View File

@ -51,7 +51,6 @@
#define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */
#define _BSD_SIZE_T_ unsigned int /* sizeof() */
#define _BSD_SSIZE_T_ long /* byte count or error */
#define _BSD_SUSECONDS_T_ int /* suseconds_t */
#define _BSD_TIME_T_ long /* time() */
#define _BSD_TIMER_T_ int /* timer_t */

View File

@ -56,8 +56,6 @@
#define _BSD_VA_LIST_ __builtin_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

View File

@ -51,7 +51,6 @@
#define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */
#define _BSD_SIZE_T_ unsigned int /* sizeof() */
#define _BSD_SSIZE_T_ long /* byte count or error */
#define _BSD_SUSECONDS_T_ int /* suseconds_t */
#define _BSD_TIME_T_ long /* time() */
#define _BSD_TIMER_T_ int /* timer_t */