# HG changeset patch # User Mikael Berthe # Date 1120898491 -3600 # Node ID 96917f04c841cc1089ba7898ea4d46695dc51a82 # Parent 319e6c58ccb52699858b9d41f2087df6991b4bc6 Define isblank() when C99 is not used diff -r 319e6c58ccb5 -r 96917f04c841 mcabber/src/settings.h --- a/mcabber/src/settings.h Fri Jul 08 22:33:37 2005 +0100 +++ b/mcabber/src/settings.h Sat Jul 09 09:41:31 2005 +0100 @@ -3,6 +3,10 @@ #include +#ifndef __USE_ISOC99 +# define isblank(c) ((c) == 0x20 || (c) == 0x09) +#endif + #define SETTINGS_TYPE_OPTION 1 #define SETTINGS_TYPE_ALIAS 2 #define SETTINGS_TYPE_BINDING 3