Linux build fix.

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@884 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Adrien Destugues 2009-06-22 21:42:28 +00:00
parent 230baa77e7
commit 77c87dcc24

View File

@ -958,6 +958,11 @@ void Button_Settings(void)
Set_number_of_backups(Config.Max_undo_pages); Set_number_of_backups(Config.Max_undo_pages);
} }
// POSIX calls it strcasecmp, Windows uses stricmp... no ANSI standard.
#ifdef __linux__
#define stricmp strcasecmp
#endif
// Add a skin to the list // Add a skin to the list
void Add_skin(const char *name) void Add_skin(const char *name)
{ {