diff options
Diffstat (limited to 'libthreads')
-rw-r--r-- | libthreads/ChangeLog | 5 | ||||
-rw-r--r-- | libthreads/i386/csw.S | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/libthreads/ChangeLog b/libthreads/ChangeLog index ebb6a424..19ad905f 100644 --- a/libthreads/ChangeLog +++ b/libthreads/ChangeLog @@ -1,3 +1,8 @@ +Thu Aug 29 12:50:37 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * i386/csw.S: Include <mach/i386/asm.h> instead of <i386/asm.h>. + Define ELF before inclusion. + Sat Jul 20 15:47:24 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu> * Makefile (lndist-i386-files): Look for I386SRCS and I386HDRS in diff --git a/libthreads/i386/csw.S b/libthreads/i386/csw.S index 0951c5cc..ea77b739 100644 --- a/libthreads/i386/csw.S +++ b/libthreads/i386/csw.S @@ -26,6 +26,10 @@ /* * HISTORY * $Log: csw.S,v $ + * Revision 1.5 1995/10/04 20:55:28 roland + * (JUMPTARGET): New macro, versions for [PIC] and not. + * Use it in place of EXT. + * * Revision 1.4 1995/10/04 20:22:17 roland * [PIC] (EXT): Redefine to use PLT. * @@ -59,7 +63,8 @@ * [90/02/05 dbg] * */ -#include <i386/asm.h> +#define ELF +#include <mach/i386/asm.h> #ifdef PIC #define JUMPTARGET(name) EXT(name##@PLT) |