From 9739e750a7ca4b86ddb89674b104e9b9a8b61014 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Thu, 7 Jun 2007 14:20:27 -0400 Subject: Warning cleanup. --- src/builtins/fpe.c | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'src/builtins/fpe.c') diff --git a/src/builtins/fpe.c b/src/builtins/fpe.c index f4ee93a..8432382 100644 --- a/src/builtins/fpe.c +++ b/src/builtins/fpe.c @@ -29,21 +29,20 @@ #include #endif #include +#include "builtin.h" static int font_file_type; const char builtin_fonts[] = "built-ins"; -int -BuiltinNameCheck (name) - char *name; +static int +BuiltinNameCheck (char *name) { return (strcmp (name, builtin_fonts) == 0); } -int -BuiltinInitFPE (fpe) - FontPathElementPtr fpe; +static int +BuiltinInitFPE (FontPathElementPtr fpe) { int status; FontDirectoryPtr dir; @@ -56,9 +55,8 @@ BuiltinInitFPE (fpe) } /* ARGSUSED */ -int -BuiltinResetFPE (fpe) - FontPathElementPtr fpe; +static int +BuiltinResetFPE (FontPathElementPtr fpe) { FontDirectoryPtr dir; @@ -67,9 +65,8 @@ BuiltinResetFPE (fpe) return Successful; } -int -BuiltinFreeFPE (fpe) - FontPathElementPtr fpe; +static int +BuiltinFreeFPE (FontPathElementPtr fpe) { FontFileFreeDir ((FontDirectoryPtr) fpe->private); return Successful; -- cgit v1.2.3