64-bit safety to help sharing compilation tools with sparc64.
This commit is contained in:
parent
a1259a8d1b
commit
bea0725979
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: ansi.h,v 1.8 1998/04/27 17:39:11 kleink Exp $ */
|
/* $NetBSD: ansi.h,v 1.9 1999/06/05 12:54:23 pk Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1990, 1993
|
* Copyright (c) 1990, 1993
|
||||||
|
@ -48,17 +48,17 @@
|
||||||
* #endif
|
* #endif
|
||||||
*/
|
*/
|
||||||
#define _BSD_CLOCK_T_ unsigned long /* clock() */
|
#define _BSD_CLOCK_T_ unsigned long /* clock() */
|
||||||
#define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */
|
#define _BSD_PTRDIFF_T_ long /* ptr1 - ptr2 */
|
||||||
#define _BSD_SIZE_T_ unsigned int /* sizeof() */
|
#define _BSD_SIZE_T_ unsigned long /* sizeof() */
|
||||||
#define _BSD_SSIZE_T_ int /* byte count or error */
|
#define _BSD_SSIZE_T_ long /* byte count or error */
|
||||||
#define _BSD_TIME_T_ long /* time() */
|
#define _BSD_TIME_T_ long /* time() */
|
||||||
#define _BSD_VA_LIST_ char * /* va_list */
|
#define _BSD_VA_LIST_ char * /* va_list */
|
||||||
#define _BSD_CLOCKID_T_ int /* clockid_t */
|
#define _BSD_CLOCKID_T_ int /* clockid_t */
|
||||||
#define _BSD_TIMER_T_ int /* timer_t */
|
#define _BSD_TIMER_T_ int /* timer_t */
|
||||||
#define _BSD_SUSECONDS_T_ int /* suseconds_t */
|
#define _BSD_SUSECONDS_T_ int /* suseconds_t */
|
||||||
#define _BSD_USECONDS_T_ unsigned int /* useconds_t */
|
#define _BSD_USECONDS_T_ unsigned int /* useconds_t */
|
||||||
#define _BSD_INTPTR_T_ int /* intptr_t */
|
#define _BSD_INTPTR_T_ long /* intptr_t */
|
||||||
#define _BSD_UINTPTR_T_ unsigned int /* uintptr_t */
|
#define _BSD_UINTPTR_T_ unsigned long /* uintptr_t */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Runes (wchar_t) is declared to be an ``int'' instead of the more natural
|
* Runes (wchar_t) is declared to be an ``int'' instead of the more natural
|
||||||
|
|
Loading…
Reference in New Issue