(arctype *) 0 /* list of callee arcs */
};
+#ifdef __STDC__
int
-iscall (unsigned char *ip) {
- if (*ip == 0xeb || *ip = 0x9a)
+iscall (unsigned char *ip)
+#else
+int iscall(ip)
+ unsigned char *ip;
+#endif /* __STDC__ */
+{
+ if (*ip == 0xeb || *ip == 0x9a)
return 1;
return 0;
}
* check that this is the address of
* a function.
*/
- destpc = ( (unsigned long)instructp + 5
- - (unsigned long) textspace;
+ destpc = ( (unsigned long)instructp + 5 - (unsigned long) textspace);
if ( destpc >= s_lowpc && destpc <= s_highpc ) {
childp = nllookup( destpc );
# ifdef DEBUG