diff options
Diffstat (limited to 'x2p/walk.c')
-rw-r--r-- | x2p/walk.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/x2p/walk.c b/x2p/walk.c index 0d651988fb..6f425a4845 100644 --- a/x2p/walk.c +++ b/x2p/walk.c @@ -12,6 +12,12 @@ #include "a2p.h" #include "util.h" +static void tab(); +static void fixtab(); +static void addsemi(); +static void emit_split(); +static void numericize(); + bool exitval = FALSE; bool realexit = FALSE; bool saw_getline = FALSE; @@ -1554,7 +1560,7 @@ sub Pick {\n\ return str; } -void +static void tab(str,lvl) register STR *str; register int lvl; @@ -1567,7 +1573,7 @@ register int lvl; str_cat(str," "); } -void +static void fixtab(str,lvl) register STR *str; register int lvl; @@ -1587,7 +1593,7 @@ register int lvl; tab(str,lvl); } -void +static void addsemi(str) register STR *str; { @@ -2056,7 +2062,7 @@ int *numericptr; return 1; } -void +static void numericize(node) register int node; { |