summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/omegafonts/pl-lexer.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/omegafonts/pl-lexer.c')
-rw-r--r--Build/source/texk/web2c/omegafonts/pl-lexer.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/Build/source/texk/web2c/omegafonts/pl-lexer.c b/Build/source/texk/web2c/omegafonts/pl-lexer.c
index 3b3b1fbefb4..bc4090fb839 100644
--- a/Build/source/texk/web2c/omegafonts/pl-lexer.c
+++ b/Build/source/texk/web2c/omegafonts/pl-lexer.c
@@ -1024,11 +1024,11 @@ extern YYSTYPE yylval;
#define MAX_PTR 10000
char saved_text[MAX_PTR];
-extern void scan_int(unsigned);
-extern void scan_char(void);
-extern void scan_fix(void);
-extern void scan_string(char *, unsigned, unsigned);
-extern void scan_hex_string();
+static void scan_int(unsigned);
+static void scan_char(void);
+static void scan_fix(void);
+static void scan_string(char *, unsigned, unsigned);
+static void scan_hex_string(void);
/* from kpathsea, but avoid including kpathsea header files */
extern char *xstrdup (const char *);
@@ -3323,7 +3323,7 @@ int
yywrap (void)
{ return 1; }
-void
+static void
scan_int(unsigned base)
{
register unsigned j, q = 0x10000 / base, c0=0, c1=0, i=1;
@@ -3347,7 +3347,7 @@ scan_int(unsigned base)
yylval.yint = c0 * 0x10000 + c1;
}
-void
+static void
scan_fix(void)
{
unsigned i=1;
@@ -3391,7 +3391,7 @@ scan_fix(void)
yylval.yfix = sign * (int_part*UNITY + acc);
}
-void
+static void
scan_char(void)
{
register unsigned i=1;
@@ -3405,7 +3405,7 @@ scan_char(void)
} else yylval.yint = yytext[i];
}
-void
+static void
scan_string(char *attribute, unsigned keep, unsigned length)
{
register unsigned c, saved_ptr = 0, paren_level = 0;
@@ -3466,7 +3466,7 @@ scan_string(char *attribute, unsigned keep, unsigned length)
}
}
-void
+static void
scan_hex_string(void)
{
register unsigned i=10;