Trust the code more than the comment(s) and correct some false

statements about pointer data type sizes, which spread probably
by copy-and-paste.
This commit is contained in:
Robert Drehmel 2003-04-12 07:36:44 +00:00
parent 9bca28a703
commit 5a1c2d4f62
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113388

View File

@ -48,16 +48,16 @@ typedef unsigned int iaddr_t; /* unsigned int same size as pointer */
typedef int saddr_t; /* signed int same size as pointer */
#endif
#ifdef __alpha__
typedef unsigned long iaddr_t; /* unsigned int same size as pointer */
typedef long saddr_t; /* signed int same size as pointer */
typedef unsigned long iaddr_t; /* unsigned long same size as pointer */
typedef long saddr_t; /* signed long same size as pointer */
#endif
#ifdef __powerpc__
typedef unsigned int iaddr_t; /* unsigned int same size as pointer */
typedef int saddr_t; /* signed int same size as pointer */
#endif
#ifdef __ia64__
typedef unsigned long iaddr_t; /* unsigned int same size as pointer */
typedef long saddr_t; /* signed int same size as pointer */
typedef unsigned long iaddr_t; /* unsigned long same size as pointer */
typedef long saddr_t; /* signed long same size as pointer */
#endif
#ifdef __sparc64__
typedef unsigned long iaddr_t; /* unsigned long same size as pointer */