file linux/../../mysnprintf.h line 17: error: conflicting function
declarations `mysnprintf'
old definition in module `mysnprintf' file mysnprintf.c line 870
signed int (char *str, unsigned long int count, const char *fmt, ..new
definition in module `SDL_sysjoystick' file mysnprintf.h line 17
signed int (char *, const unsigned int, const char *, ...)
The header should be
$ grep mysnprintf mysnprintf.h
int mysnprintf(char *str, size_t count, const char *fmt, ...);
This matches
$ grep mysnprintf mysnprintf.c
int mysnprintf (char *str,size_t count,const char *fmt,...)
so long
MUFTI