diff options
Diffstat (limited to 'sysdeps/mach/i386/sysdep.h')
-rw-r--r-- | sysdeps/mach/i386/sysdep.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/sysdeps/mach/i386/sysdep.h b/sysdeps/mach/i386/sysdep.h index f467fef24b..5f08608314 100644 --- a/sysdeps/mach/i386/sysdep.h +++ b/sysdeps/mach/i386/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 93, 94, 95, 96 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 @@ -16,8 +16,6 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#define MOVE(x,y) movl x , y - #define LOSE asm volatile ("hlt") #define SNARF_ARGS(entry_sp, argc, argv, envp) \ @@ -51,12 +49,12 @@ Cambridge, MA 02139, USA. */ #define STACK_GROWTH_DOWN - -#ifdef PIC -#define JUMPTARGET(name) name##@PLT -#else -#define JUMPTARGET(name) name -#endif +/* Get the machine-independent Mach definitions. */ +#include_next <sysdep.h> -#include_next <sysdep.h> +/* This should be rearranged, but at the moment this file provides + the most useful definitions for assembler syntax details. */ +#undef ENTRY +#undef ALIGN +#include <sysdeps/unix/i386/sysdep.h> |