summaryrefslogtreecommitdiffstats
path: root/libvo/font_load.h
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/font_load.h')
-rw-r--r--libvo/font_load.h15
1 files changed, 3 insertions, 12 deletions
diff --git a/libvo/font_load.h b/libvo/font_load.h
index 3c1876ada7..e4d4e83d2c 100644
--- a/libvo/font_load.h
+++ b/libvo/font_load.h
@@ -91,18 +91,9 @@ void load_font(int width, int height);
raw_file* load_raw(char *name,int verbose);
font_desc_t* read_font_desc(char* fname,float factor,int verbose);
-extern void inline render_one_glyph(font_desc_t *desc, int c)
-{
-}
-
-extern int inline kerning(font_desc_t *desc, int prevc, int c)
-{
- return 0;
-}
-
-extern void inline load_font(int width, int height)
-{
-}
+static void inline render_one_glyph(font_desc_t *desc, int c) {}
+static int inline kerning(font_desc_t *desc, int prevc, int c) { return 0; }
+static void inline load_font(int width, int height){}
#endif