summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorkleink <kleink@NetBSD.org>2003-10-22 15:51:18 +0000
committerkleink <kleink@NetBSD.org>2003-10-22 15:51:18 +0000
commit22c6452bfb5d91f5034f06301cdbb4dc0c48ed52 (patch)
tree76cf6d89d5b77d24ef69ff5f97113a37c0369618 /include
parent0f781c4abbda97d05324830df835c87b4f5d14c4 (diff)
_ISO_C99_SOURCE -> _ISOC99_SOURCE
Diffstat (limited to 'include')
-rw-r--r--include/ctype.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ctype.h b/include/ctype.h
index 5be77c42701..893daebabe0 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -1,4 +1,4 @@
-/* $NetBSD: ctype.h,v 1.24 2003/08/07 09:44:09 agc Exp $ */
+/* $NetBSD: ctype.h,v 1.25 2003/10/22 15:51:18 kleink Exp $ */
/*
* Copyright (c) 1989 The Regents of the University of California.
@@ -78,7 +78,7 @@ int _tolower __P ((int));
int _toupper __P ((int));
#endif
-#if defined(_ISO_C99_SOURCE) || (_POSIX_C_SOURCE - 0) > 200112L || \
+#if defined(_ISOC99_SOURCE) || (_POSIX_C_SOURCE - 0) > 200112L || \
(_XOPEN_SOURCE - 0) > 600 || defined(_NETBSD_SOURCE)
int isblank __P ((int));
#endif