diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-09-26 08:48:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-09-26 08:48:19 +0000 |
commit | a1d335d6c9e04170a285b09f7a6d278427c6c30d (patch) | |
tree | cca49e7194af34e38b1277cc239f7ea08e12005e | |
parent | ca225a410beec632da27617ea972df345986b54e (diff) | |
download | glibc-a1d335d6c9e04170a285b09f7a6d278427c6c30d.tar glibc-a1d335d6c9e04170a285b09f7a6d278427c6c30d.tar.gz glibc-a1d335d6c9e04170a285b09f7a6d278427c6c30d.tar.bz2 glibc-a1d335d6c9e04170a285b09f7a6d278427c6c30d.zip |
[BZ #362]
Update.
* sysdeps/generic/bits/types.h: Fix __SQUAD_TYPE and __UQUAD_TYPE
for compilers without __GLIBC_HAVE_LONG_LONG. [BZ #362]
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | bits/types.h | 6 | ||||
-rw-r--r-- | sysdeps/generic/bits/types.h | 6 |
3 files changed, 9 insertions, 6 deletions
@@ -1,5 +1,8 @@ 2004-09-26 Ulrich Drepper <drepper@redhat.com> + * sysdeps/generic/bits/types.h: Fix __SQUAD_TYPE and __UQUAD_TYPE + for compilers without __GLIBC_HAVE_LONG_LONG. [BZ #362] + * sysdeps/posix/getaddrinfo.c (getaddrinfo): Remove incorrect requirement on socktype and protocol. (gaih_inet): If numeric port number is given, return records for all diff --git a/bits/types.h b/bits/types.h index 8abea03f57..ce48964f14 100644 --- a/bits/types.h +++ b/bits/types.h @@ -1,5 +1,5 @@ /* bits/types.h -- definitions of __*_t types underlying *_t types. - Copyright (C) 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -106,8 +106,8 @@ typedef struct #define __SLONGWORD_TYPE long int #define __ULONGWORD_TYPE unsigned long int #if __WORDSIZE == 32 -# define __SQUAD_TYPE long long int -# define __UQUAD_TYPE unsigned long long int +# define __SQUAD_TYPE __quad_t +# define __UQUAD_TYPE __u_quad_t # define __SWORD_TYPE int # define __UWORD_TYPE unsigned int # define __SLONG32_TYPE long int diff --git a/sysdeps/generic/bits/types.h b/sysdeps/generic/bits/types.h index 8abea03f57..ce48964f14 100644 --- a/sysdeps/generic/bits/types.h +++ b/sysdeps/generic/bits/types.h @@ -1,5 +1,5 @@ /* bits/types.h -- definitions of __*_t types underlying *_t types. - Copyright (C) 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -106,8 +106,8 @@ typedef struct #define __SLONGWORD_TYPE long int #define __ULONGWORD_TYPE unsigned long int #if __WORDSIZE == 32 -# define __SQUAD_TYPE long long int -# define __UQUAD_TYPE unsigned long long int +# define __SQUAD_TYPE __quad_t +# define __UQUAD_TYPE __u_quad_t # define __SWORD_TYPE int # define __UWORD_TYPE unsigned int # define __SLONG32_TYPE long int |