To: None <port-sparc@netbsd.org>
From: matthew green <mrg@eterna.com.au>
List: port-sparc
Date: 11/27/1999 21:56:51
hi. i noticed that we have these two differences here:
! #define _BSD_CLOCK_T_ unsigned long /* clock() */
! #define _BSD_TIME_T_ long /* time() */
--
! #define _BSD_CLOCK_T_ int /* clock() */
! #define _BSD_TIME_T_ int /* time() */
two points:
- clock_t is signed on the sparc64. why?
- can't we change the sparc long's to int's so these files
can be identical? i assume this has issues with the
compiler like the size_t change? if so, doing it before
1.5 would be espcially good.
i'd like to make these "unsigned int" and "int" in both files.
comments?