summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/font/mapfile.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2010-01-25 12:30:04 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2010-01-25 12:30:04 +0000
commit65c37b17f39210ff32ba3ec1415d5f5a3f8e86ff (patch)
treea23710d061b8695f9eec30cbf5591e6016432089 /Build/source/texk/web2c/luatexdir/font/mapfile.c
parenta6ff9d2b253991c7c8eb94f2977abb10ad466480 (diff)
texk/web2c/luatexdir: compiler warnings
git-svn-id: svn://tug.org/texlive/trunk@16817 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/font/mapfile.c')
-rw-r--r--Build/source/texk/web2c/luatexdir/font/mapfile.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/Build/source/texk/web2c/luatexdir/font/mapfile.c b/Build/source/texk/web2c/luatexdir/font/mapfile.c
index 7784c5b3881..fe5155da23e 100644
--- a/Build/source/texk/web2c/luatexdir/font/mapfile.c
+++ b/Build/source/texk/web2c/luatexdir/font/mapfile.c
@@ -121,7 +121,7 @@ static void delete_ff_entry(ff_entry * ff)
xfree(ff);
}
-static fm_entry *dummy_fm_entry()
+static fm_entry *dummy_fm_entry(void)
{
static const fm_entry const_fm_entry;
return (fm_entry *) & const_fm_entry;
@@ -167,7 +167,7 @@ static int comp_ff_entry(const void *pa, const void *pb, void *p)
((const ff_entry *) pb)->ff_name);
}
-static void create_avl_trees()
+static void create_avl_trees(void)
{
assert(tfm_tree == NULL);
tfm_tree = avl_create(comp_fm_entry_tfm, NULL, &avl_xallocator);
@@ -271,7 +271,7 @@ int avl_do_entry(fm_entry * fm, int mode)
/* add the encoding name to an AVL tree. this has nothing to do with writeenc.c */
-char *add_encname(char *s)
+static char *add_encname(char *s)
{
char *p;
void **aa;
@@ -288,7 +288,7 @@ char *add_encname(char *s)
/**********************************************************************/
/* consistency check for map entry, with warn flag */
-int check_fm_entry(fm_entry * fm, boolean warn)
+static int check_fm_entry(fm_entry * fm, boolean warn)
{
int a = 0;
assert(fm != NULL);
@@ -414,7 +414,7 @@ int check_std_t1font(char *s)
/**********************************************************************/
-static void fm_scan_line()
+static void fm_scan_line(void)
{
int a, b, c, j, u = 0, v = 0;
float d;
@@ -575,7 +575,7 @@ static void fm_scan_line()
/**********************************************************************/
-void fm_read_info()
+void fm_read_info(void)
{
int callback_id;
int file_opened = 0;
@@ -821,7 +821,7 @@ fm_entry *lookup_fontmap(char *ps_name)
* ignored.
*/
-void process_map_item(char *s, int type)
+static void process_map_item(char *s, int type)
{
char *p;
int mode;