1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

* sysdeps/powerpc/sysdep.h: Remove powerpc32 specific macros.

* sysdeps/powerpc/powerpc32/sysdep.h: New file.  Define powerpc32
	specific macros copied from sysdeps/powerpc/sysdep.h.
	* sysdeps/powerpc/powerpc64/sysdep.h: New file.  Define powerpc64
	specific macros.
	* sysdeps/unix/powerpc/sysdep.h: Include <bits/wordsize.h>.
	[__WORDSIZE==64]: Include sysdeps/powerpc/powerpc64/sysdep.h.
	[!__WORDSIZE==64]: Include sysdeps/powerpc/powerpc32/sysdep.h.
This commit is contained in:
Roland McGrath
2002-09-20 23:46:03 +00:00
parent 7f4dce05c2
commit b80a3db02e
5 changed files with 389 additions and 110 deletions

View File

@ -1,4 +1,5 @@
/* Copyright (C) 1991, 92, 93, 95, 96, 97, 99 Free Software Foundation, Inc.
/* Copyright (C) 1991, 92, 93, 95, 96, 97, 1999, 2002
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
@ -17,4 +18,9 @@
02111-1307 USA. */
#include <sysdeps/unix/sysdep.h>
#include <sysdeps/powerpc/sysdep.h>
#include <bits/wordsize.h>
#if __WORDSIZE == 64
#include <sysdeps/powerpc/powerpc64/sysdep.h>
#else
#include <sysdeps/powerpc/powerpc32/sysdep.h>
#endif