diff options
author | Roland McGrath <roland@gnu.org> | 1995-04-05 04:18:44 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-04-05 04:18:44 +0000 |
commit | 4bca5a35b82dd45f3322679ef900a1753fc8d688 (patch) | |
tree | d4e76c385c0e29eaab1012a35ad6f1e899b95e43 /sysdeps/i386 | |
parent | fa0ad20487f0445d888e81a64a5d3a64f448631d (diff) | |
download | glibc-4bca5a35b82dd45f3322679ef900a1753fc8d688.tar.gz glibc-4bca5a35b82dd45f3322679ef900a1753fc8d688.tar.xz glibc-4bca5a35b82dd45f3322679ef900a1753fc8d688.zip |
Wed Apr 5 00:13:45 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* sysdeps/i386/bsd-_setjmp.S: Fix typo in name: setjmp -> _setjmp.
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/bsd-_setjmp.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/i386/bsd-_setjmp.S b/sysdeps/i386/bsd-_setjmp.S index 372fc242b2..bbfddec565 100644 --- a/sysdeps/i386/bsd-_setjmp.S +++ b/sysdeps/i386/bsd-_setjmp.S @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. i386 version. -Copyright (C) 1994 Free Software Foundation, Inc. +Copyright (C) 1994, 1995 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 @@ -23,7 +23,7 @@ Cambridge, MA 02139, USA. */ #include <sysdep.h> -ENTRY (setjmp) +ENTRY (_setjmp) popl %eax /* Pop return PC. */ popl %ecx /* Pop jmp_buf argument. */ pushl $0 /* Push second argument of zero. */ |