Fix merge botch (we use 64bit times now).

This commit is contained in:
matt 2009-12-14 20:42:12 +00:00
parent f8c711439e
commit 6a96fd6958

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.25 2009/12/14 00:46:04 matt Exp $ */
/* $NetBSD: ansi.h,v 1.26 2009/12/14 20:42:12 matt Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -51,13 +51,12 @@
#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_TIME_T_ __int64_t /* time() */
#else
#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() */
#endif /* !__mips_o32 */
#define _BSD_TIME_T_ __int64_t /* time() */
#if __GNUC_PREREQ__(3, 0)
#define _BSD_VA_LIST_ __builtin_va_list /* GCC builtin type */
#else