about summary refs log tree commit diff
path: root/posix/sys
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-10-01 11:00:26 +0000
committerUlrich Drepper <drepper@redhat.com>1998-10-01 11:00:26 +0000
commit7782d0bf55c294b7ed872e2590fcf4a683be5e05 (patch)
tree1e61d31c86a72090043c69ac0a2b41d25e4f86c4 /posix/sys
parente3e4e463cf18e47448e92f6cb2c126b9828cd2ca (diff)
downloadglibc-7782d0bf55c294b7ed872e2590fcf4a683be5e05.tar.gz
glibc-7782d0bf55c294b7ed872e2590fcf4a683be5e05.tar.xz
glibc-7782d0bf55c294b7ed872e2590fcf4a683be5e05.zip
Update.
	* sys/types.h: Protect use of long long by __extension__.
	* stdlib/stdlib.h: Likewise.
	* string/string.h: Likewise.
	* sysdeps/i386/bits/byteswap.h: Likewise.
	* sysdeps/geeric/bits/byteswap.h: Likewise.
	* sysdeps/i386/fpu/bits/mathinline.h: Likewise.
	* sysdeps/unix/sysv/linux/bits/types.h: Likewise.
	* sysdeps/unix/sysv/linux/mips/bits/types.h: Likewise.
	* sysdeps/wordsize-32/inttypes.h: Likewise.
	* sysdeps/wordsize-32/stdint.h: Likewise.
	* wcsmbs/wchar.h: Likewise.
Diffstat (limited to 'posix/sys')
-rw-r--r--posix/sys/types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/sys/types.h b/posix/sys/types.h
index 936b738621..b0246a2531 100644
--- a/posix/sys/types.h
+++ b/posix/sys/types.h
@@ -141,7 +141,7 @@ typedef	char int8_t;
 typedef	short int int16_t;
 typedef	int int32_t;
 #  ifdef __GNUC__
-typedef long long int int64_t;
+__extension__ typedef long long int int64_t;
 #  endif
 # endif
 
@@ -150,7 +150,7 @@ typedef	unsigned char u_int8_t;
 typedef	unsigned short int u_int16_t;
 typedef	unsigned int u_int32_t;
 # ifdef __GNUC__
-typedef unsigned long long int u_int64_t;
+__extension__ typedef unsigned long long int u_int64_t;
 # endif
 
 typedef int register_t;