summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/powerpc/bits/wordsize.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-02-22 05:27:38 +0000
committerMike Frysinger <vapier@gentoo.org>2006-02-22 05:27:38 +0000
commit4afc4d00261ccba61a8fcd2cb0aba246f0029850 (patch)
tree6224250cfadf3ca4431c0d2b09d477bcc6416aba /libc/sysdeps/linux/powerpc/bits/wordsize.h
parent64b2dfee9682facaa7222b9960f327eac901fe31 (diff)
sync headers with glibc
Diffstat (limited to 'libc/sysdeps/linux/powerpc/bits/wordsize.h')
-rw-r--r--libc/sysdeps/linux/powerpc/bits/wordsize.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/libc/sysdeps/linux/powerpc/bits/wordsize.h b/libc/sysdeps/linux/powerpc/bits/wordsize.h
index ba643b60a..cf934234f 100644
--- a/libc/sysdeps/linux/powerpc/bits/wordsize.h
+++ b/libc/sysdeps/linux/powerpc/bits/wordsize.h
@@ -1,19 +1,19 @@
-/* Copyright (C) 1999 Free Software Foundation, Inc.
- This file is part of the GNU C Library.
+/* Determine the wordsize from the preprocessor defines. */
- The GNU C Library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
+#if defined __powerpc64__
+# define __WORDSIZE 64
+# define __WORDSIZE_COMPAT32 1
+#else
+# define __WORDSIZE 32
+#endif
- The GNU C Library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
+#if !defined __NO_LONG_DOUBLE_MATH && !defined __LONG_DOUBLE_MATH_OPTIONAL
- You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
-
-#define __WORDSIZE 32
+/* Signal the glibc ABI didn't used to have a `long double'.
+ The changes all the `long double' function variants to be redirects
+ to the double functions. */
+# define __LONG_DOUBLE_MATH_OPTIONAL 1
+# ifndef __LONG_DOUBLE_128__
+# define __NO_LONG_DOUBLE_MATH 1
+# endif
+#endif