Make _BSD_CLOCK_T_ unsigned int so it's the same for IPL32 and LP64

environments.  We don't really have a powerpc64 native userland
and the mips64 native userland is IPL32 so this shouldn't affect anything.
This commit is contained in:
matt 2015-06-17 13:52:51 +00:00
parent b64d94ca7f
commit 7be314e397
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.28 2011/07/17 20:54:43 joerg Exp $ */
/* $NetBSD: ansi.h,v 1.29 2015/06/17 13:52:51 matt Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -46,7 +46,7 @@
* #undef _BSD_SIZE_T_
* #endif
*/
#define _BSD_CLOCK_T_ unsigned long /* clock() */
#define _BSD_CLOCK_T_ unsigned int /* clock() */
#ifndef __mips_o32
#define _BSD_PTRDIFF_T_ long /* ptr1 - ptr2 */
#define _BSD_SIZE_T_ unsigned long /* sizeof() */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.29 2011/07/17 20:54:45 joerg Exp $ */
/* $NetBSD: ansi.h,v 1.30 2015/06/17 13:52:51 matt Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -46,7 +46,7 @@
* #undef _BSD_SIZE_T_
* #endif
*/
#define _BSD_CLOCK_T_ unsigned long /* clock() */
#define _BSD_CLOCK_T_ unsigned int /* clock() */
#ifdef _LP64
#define _BSD_PTRDIFF_T_ long /* ptr1 - ptr2 */
#define _BSD_SIZE_T_ unsigned long /* sizeof() */