summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/omegafonts/font_routines.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2009-06-18 10:03:26 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2009-06-18 10:03:26 +0000
commit611243024d58336edbf2e252f8536f1513e0d5b5 (patch)
treecabd3266a88c01877b320775693ecbeb0c227ee1 /Build/source/texk/web2c/omegafonts/font_routines.c
parente74f6b860dc92eb618499f365f405a2bc6bf9f98 (diff)
enable compiler warnings
git-svn-id: svn://tug.org/texlive/trunk@13809 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/omegafonts/font_routines.c')
-rw-r--r--Build/source/texk/web2c/omegafonts/font_routines.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/Build/source/texk/web2c/omegafonts/font_routines.c b/Build/source/texk/web2c/omegafonts/font_routines.c
index 32be7d412a6..50ed5690f50 100644
--- a/Build/source/texk/web2c/omegafonts/font_routines.c
+++ b/Build/source/texk/web2c/omegafonts/font_routines.c
@@ -54,7 +54,7 @@ font_table_init(void)
no_fonts = 0;
}
-void
+static void
font_no_incr(void)
{
if (no_fonts * BLOCK == font_table_size) {
@@ -210,7 +210,7 @@ packet_table_init(void)
cur_packet = packet_table;
}
-void
+static void
packet_ptr_incr(void)
{
if (packet_ptr == packet_table_size) {
@@ -221,7 +221,7 @@ packet_ptr_incr(void)
packet_ptr++;
}
-void
+static void
append_to_packet(unsigned val)
{
packet_ptr_incr();
@@ -413,7 +413,7 @@ packet_table_end(void)
}
-void
+static void
move_ptr_decr(void)
{
if (move_ptr==0)
@@ -422,7 +422,7 @@ move_ptr_decr(void)
cur_move = &move_table[move_ptr];
}
-void
+static void
move_ptr_incr(void)
{
if (move_ptr == move_table_size) {
@@ -569,7 +569,7 @@ out_ovf_4(unsigned i)
file_ovf_count += 4;
}
-void
+static void
output_ovf_fonts(void)
{
unsigned i, j, k1, k2;
@@ -623,7 +623,7 @@ output_ovf_file(void)
} while ((file_ovf_count % 4) != 0);
}
-void
+static void
in_ovf_4(int *value)
{
*value = (((*ovf_ptr) & 0xff) << 24) |
@@ -633,7 +633,7 @@ in_ovf_4(int *value)
ovf_ptr += 4;
}
-void
+static void
in_ovf_unsigned_4(unsigned *value)
{
*value = (((*ovf_ptr) & 0xff) << 24) |
@@ -643,7 +643,7 @@ in_ovf_unsigned_4(unsigned *value)
ovf_ptr += 4;
}
-void
+static void
in_ovf_3(int *value)
{
*value = (((*ovf_ptr) & 0xff) << 16) |
@@ -652,7 +652,7 @@ in_ovf_3(int *value)
ovf_ptr += 3;
}
-void
+static void
in_ovf(int *value)
{
*value = (*ovf_ptr) & 0xff;