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

Remove whitespace from last change

* sysdeps/mips/sgidefs.h: Prevent <asm/sgidefs.h> from being
	included by kernel headers and undo its settings if already
	included.  Define _ABIO32, _ABIN32 and _ABI64 if missing and use
	them to define _MIPS_SIM_ABI32, _MIPS_SIM_NABI32 and
This commit is contained in:
Andreas Jaeger
2004-11-24 04:43:30 +00:00
parent c997e9d40e
commit 6f50c60723
2 changed files with 7 additions and 7 deletions

View File

@@ -36,10 +36,10 @@
* sysdeps/unix/sysv/linux/mips/sys/tas.h: Likewise. * sysdeps/unix/sysv/linux/mips/sys/tas.h: Likewise.
* sysdeps/unix/sysv/linux/mips/sys/user.h: Likewise. * sysdeps/unix/sysv/linux/mips/sys/user.h: Likewise.
* sysdeps/mips/sgidefs.h: Prevent <asm/sgidefs.h> from being * sysdeps/mips/sgidefs.h: Prevent <asm/sgidefs.h> from being
included by kernel headers and undo its settings if already included by kernel headers and undo its settings if already
included. Define _ABIO32, _ABIN32 and _ABI64 if missing and use included. Define _ABIO32, _ABIN32 and _ABI64 if missing and use
them to define _MIPS_SIM_ABI32, _MIPS_SIM_NABI32 and them to define _MIPS_SIM_ABI32, _MIPS_SIM_NABI32 and
_MIPS_SIM_ABI64 for compatibility. _MIPS_SIM_ABI64 for compatibility.
* sysdeps/unix/sysv/linux/mips/Makefile: Use _ABIO32, _ABIN32 and * sysdeps/unix/sysv/linux/mips/Makefile: Use _ABIO32, _ABIN32 and
_ABI64 for ABI selection in generated syscall-list.h _ABI64 for ABI selection in generated syscall-list.h

View File

@@ -42,7 +42,7 @@ BEGIN { print "#include <sgidefs.h>"; }
name = $2; name = $2;
sub (/_O32_/, "_", name); sub (/_O32_/, "_", name);
print; print;
print "#if _MIPS_SIM == _MIPS_SIM_ABI32"; print "#if _MIPS_SIM == _ABIO32";
print "# define " name " " $2; print "# define " name " " $2;
print "#endif"; print "#endif";
next; next;
@@ -51,7 +51,7 @@ BEGIN { print "#include <sgidefs.h>"; }
name = $2; name = $2;
sub (/_N32_/, "_", name); sub (/_N32_/, "_", name);
print; print;
print "#if _MIPS_SIM == _MIPS_SIM_NABI32"; print "#if _MIPS_SIM == _ABIN32";
print "# define " name " " $2; print "# define " name " " $2;
print "#endif"; print "#endif";
next; next;
@@ -60,7 +60,7 @@ BEGIN { print "#include <sgidefs.h>"; }
name = $2; name = $2;
sub (/_N64_/, "_", name); sub (/_N64_/, "_", name);
print; print;
print "#if _MIPS_SIM == _MIPS_SIM_ABI64"; print "#if _MIPS_SIM == _ABI64";
print "# define " name " " $2; print "# define " name " " $2;
print "#endif"; print "#endif";
next; next;