# HG changeset patch # User arpi # Date 1030715607 0 # Node ID 379852905f319c80f3da4e00bd8890730a22a68f # Parent 6175f7d18f8cf3e61c0721d38cbc43ddde4f1215 2*100l, extern fv() {} is nonsense, you have to decide if it is extern or local but never both! diff -r 6175f7d18f8c -r 379852905f31 libvo/font_load.h --- a/libvo/font_load.h Fri Aug 30 13:34:08 2002 +0000 +++ b/libvo/font_load.h Fri Aug 30 13:53:27 2002 +0000 @@ -91,18 +91,9 @@ 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