More cleanups for gprof, especially with the '386 target.
[deliverable/binutils-gdb.git] / gprof / i386.c
index dc28611b30803e284a6e976db63f675852c7f3a5..50e99803efac490316c230fff0cc7cc6dbedc499 100644 (file)
@@ -47,8 +47,14 @@ nltype       indirectchild = {
        (arctype *) 0                   /* list of callee arcs */
     };
 
+#ifdef __STDC__
 int
-iscall (unsigned char *ip) {
+iscall (unsigned char *ip)
+#else
+int iscall(ip)
+       unsigned char *ip;
+#endif /* __STDC__ */
+{
   if (*ip == 0xeb || *ip == 0x9a) 
     return 1;
   return 0;
This page took 0.023858 seconds and 4 git commands to generate.