changeset 498:879ffddc13b0

Suppress a compilation warning
author Mikael Berthe <mikael@lilotux.net>
date Mon, 10 Oct 2005 23:00:00 +0200
parents b5c2c3c50435
children baa812f04f24
files mcabber/src/settings.h
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mcabber/src/settings.h	Mon Oct 10 22:59:32 2005 +0200
+++ b/mcabber/src/settings.h	Mon Oct 10 23:00:00 2005 +0200
@@ -1,11 +1,12 @@
 #ifndef __SETTINGS_H__
 #define __SETTINGS_H__ 1
 
+#include <ctype.h>
 #include <glib.h>
 
 #include "jabglue.h"
 
-#ifndef	__USE_ISOC99
+#ifndef isblank
 # define isblank(c)  ((c) == 0x20 || (c) == 0x09)
 #endif