summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/pdftexdir/mapfile.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2010-01-26 16:22:34 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2010-01-26 16:22:34 +0000
commiteafa63690d492952cf06088933ce31bee58d509e (patch)
tree6a878413b23d3066fd75bdfad6a40bc97946eaf4 /Build/source/texk/web2c/pdftexdir/mapfile.c
parentb5e3ad3cce847709a9da306790954e41c465903e (diff)
texk/web2c/pdftex compiler warnings
git-svn-id: svn://tug.org/texlive/trunk@16825 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/pdftexdir/mapfile.c')
-rw-r--r--Build/source/texk/web2c/pdftexdir/mapfile.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/Build/source/texk/web2c/pdftexdir/mapfile.c b/Build/source/texk/web2c/pdftexdir/mapfile.c
index e0851e1f2a1..825d72205fa 100644
--- a/Build/source/texk/web2c/pdftexdir/mapfile.c
+++ b/Build/source/texk/web2c/pdftexdir/mapfile.c
@@ -108,7 +108,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;
@@ -151,7 +151,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);
@@ -256,7 +256,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;
@@ -273,7 +273,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);
@@ -398,7 +398,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;
@@ -555,7 +555,7 @@ static void fm_scan_line()
/**********************************************************************/
-void fm_read_info()
+void fm_read_info(void)
{
if (tfm_tree == NULL)
create_avl_trees();
@@ -742,7 +742,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;