diff options
Diffstat (limited to 'usr.sbin/unbound/ldns/compat/isblank.c')
-rw-r--r-- | usr.sbin/unbound/ldns/compat/isblank.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/usr.sbin/unbound/ldns/compat/isblank.c b/usr.sbin/unbound/ldns/compat/isblank.c deleted file mode 100644 index 3b38154c5fd..00000000000 --- a/usr.sbin/unbound/ldns/compat/isblank.c +++ /dev/null @@ -1,15 +0,0 @@ -/* Just a replacement, if the original isblank is not - present */ - -#if HAVE_CONFIG_H -#include <ldns/config.h> -#endif - -int isblank(int c); - -/* true if character is a blank (space or tab). C99. */ -int -isblank(int c) -{ - return (c == ' ') || (c == '\t'); -} |