2*100l, extern fv() {} is nonsense, you have to decide if it is extern or

local but never both!


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7166 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-08-30 13:53:27 +00:00
parent 1d057df47f
commit 5531d33220
1 changed files with 3 additions and 12 deletions

View File

@ -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