From: Miek Gieben Date: Wed, 7 Dec 2005 10:38:19 +0000 (+0000) Subject: changed is_blanked back to static int X-Git-Tag: release-1.1.0~550 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66aebfc04ddb83221af37ef37be413bddfb4bfc6;p=thirdparty%2Fldns.git changed is_blanked back to static int --- diff --git a/ldns/util.h.in b/ldns/util.h.in index 50830306..d0cc64dc 100644 --- a/ldns/util.h.in +++ b/ldns/util.h.in @@ -107,7 +107,7 @@ ldns_write_uint32(void *dst, uint32_t data) #ifndef HAVE_ISBLANK /* gnuism */ -int +static int isblank(int c) { return (c==' ') || (c=='\t');