s/__sparc_v9__/__sparc64__/

"gcc -m32 -mcpu=ultrasparc" defines __sparc_v9__, so __sparc64__ is
more appropriate to indicate a 64-bit environment.
This commit is contained in:
nakayama 2004-04-04 11:59:51 +00:00
parent 1de145799e
commit cf7c3ba713

View File

@ -108,7 +108,7 @@ extern int h_errno;
# include <net/if_types.h>
#endif
#if defined(__alpha__) || defined(__sparc_v9__) || defined(__x86_64__)
#if defined(__alpha__) || defined(__sparc64__) || defined(__x86_64__)
#define PTRSIZE_64BIT
#endif