diff options
Diffstat (limited to 'run.c')
-rw-r--r-- | run.c | 15 |
1 files changed, 6 insertions, 9 deletions
@@ -20,7 +20,7 @@ dEXT char **watchaddr = 0; dEXT char *watchok; int -runops_standard() { +runops_standard(void) { dTHR; SAVEI32(runlevel); runlevel++; @@ -35,7 +35,7 @@ runops_standard() { static void debprof _((OP*o)); int -runops_debug() { +runops_debug(void) { dTHR; if (!op) { warn("NULL OP IN RUN"); @@ -61,8 +61,7 @@ runops_debug() { } I32 -debop(o) -OP *o; +debop(OP *o) { SV *sv; deb("%s", op_name[o->op_type]); @@ -89,8 +88,7 @@ OP *o; } void -watch(addr) -char **addr; +watch(char **addr) { watchaddr = addr; watchok = *addr; @@ -99,8 +97,7 @@ char **addr; } static void -debprof(o) -OP* o; +debprof(OP *o) { if (!profiledata) New(000, profiledata, MAXO, U32); @@ -108,7 +105,7 @@ OP* o; } void -debprofdump() +debprofdump(void) { unsigned i; if (!profiledata) |