summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/omegafonts/omfonts.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-08-05 10:18:03 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-08-05 10:18:03 +0000
commit97fa7b3630528845d9934ad227bc9f3a0c9d1d98 (patch)
tree82a86de86632aef5b567b8ce105f1cee57acc7d0 /Build/source/texk/web2c/omegafonts/omfonts.c
parent146eef7b47aee302d588dcdf461ebec5870a6846 (diff)
omfonts: General cleanup: Drop unused code. Declare functions as static
git-svn-id: svn://tug.org/texlive/trunk@34847 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/omegafonts/omfonts.c')
-rw-r--r--Build/source/texk/web2c/omegafonts/omfonts.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/Build/source/texk/web2c/omegafonts/omfonts.c b/Build/source/texk/web2c/omegafonts/omfonts.c
index c44ae04b521..3b836716fd4 100644
--- a/Build/source/texk/web2c/omegafonts/omfonts.c
+++ b/Build/source/texk/web2c/omegafonts/omfonts.c
@@ -116,6 +116,9 @@ static struct option long_options[] = {
{0, 0, 0, 0}
};
+static void read_in_whole(unsigned char **, unsigned *, FILE *, const_string );
+static void init_tables(void);
+
int
main (int argc, string *argv)
{
@@ -312,7 +315,7 @@ main (int argc, string *argv)
#define BIG_BLOCK 0x20000
#define LITTLE_BLOCK 0x1000
-void
+static void
read_in_whole(unsigned char **contents_loc,
unsigned *length_loc,
FILE *file,
@@ -346,7 +349,7 @@ read_in_whole(unsigned char **contents_loc,
*length_loc = no_total_read;
}
-void
+static void
init_tables(void)
{
font_table_init(); /* subsidiary fonts in virtual fonts */
@@ -355,8 +358,3 @@ init_tables(void)
init_measures();
}
-void
-output_text_file(FILE *dest)
-{
-}
-