diff options
author | Roland McGrath <roland@gnu.org> | 1996-05-14 20:30:25 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-05-14 20:30:25 +0000 |
commit | 64166d98349c01ccaaa848a30b12ae0d83de9bb8 (patch) | |
tree | 2b60e6e35bd3576c4cac4c8c5791ebd85869c2f1 /sysdeps | |
parent | 7cdef09812062770bab0934657992720293a3134 (diff) | |
download | glibc-64166d98349c01ccaaa848a30b12ae0d83de9bb8.zip glibc-64166d98349c01ccaaa848a30b12ae0d83de9bb8.tar.gz glibc-64166d98349c01ccaaa848a30b12ae0d83de9bb8.tar.bz2 |
Tue May 14 14:07:10 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>cvs/libc-960515
* libc-symbols.h (lint): Macro removed. The sunrpc code does some
really stupid things #ifdef lint.
* sysdeps/unix/sysv/linux/i386/profil-counter.h (profil_counter): Fix
struct member name: sc_eip -> eip.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/profil-counter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/profil-counter.h b/sysdeps/unix/sysv/linux/i386/profil-counter.h index 91e7b50..7de3fae 100644 --- a/sysdeps/unix/sysv/linux/i386/profil-counter.h +++ b/sysdeps/unix/sysv/linux/i386/profil-counter.h @@ -22,5 +22,5 @@ Cambridge, MA 02139, USA. */ void profil_counter (int signo, struct sigcontext_struct sc) { - profil_count ((void *) sc.sc_eip); + profil_count ((void *) sc.eip); } |