summaryrefslogtreecommitdiff
path: root/sysdeps/unix
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-05-14 20:30:25 +0000
committerRoland McGrath <roland@gnu.org>1996-05-14 20:30:25 +0000
commit64166d98349c01ccaaa848a30b12ae0d83de9bb8 (patch)
tree2b60e6e35bd3576c4cac4c8c5791ebd85869c2f1 /sysdeps/unix
parent7cdef09812062770bab0934657992720293a3134 (diff)
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/unix')
-rw-r--r--sysdeps/unix/sysv/linux/i386/profil-counter.h2
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 91e7b507bd..7de3faec0e 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);
}