diff options
Diffstat (limited to 'eqn/text.c')
-rw-r--r-- | eqn/text.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eqn/text.c b/eqn/text.c index 7b7b58ff7f9f..6ad51c550f06 100644 --- a/eqn/text.c +++ b/eqn/text.c @@ -30,17 +30,17 @@ extern YYSTYPE yyval; -int csp; -int psp; +static int csp; +static int psp; #define CSSIZE 400 -char cs[420]; +static char cs[420]; -int lf, rf; /* temporary spots for left and right fonts */ +static int lf, rf; /* temporary spots for left and right fonts */ void text(int t,char *p1) { int c; - char *p; + const char *p; tbl *tp; extern tbl *restbl; |