Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Fix spelling of feature test macro.



details:   https://anonhg.NetBSD.org/src/rev/71f453d6b80e
branches:  trunk
changeset: 336286:71f453d6b80e
user:      joerg <joerg%NetBSD.org@localhost>
date:      Tue Feb 24 13:17:27 2015 +0000

description:
Fix spelling of feature test macro.

diffstat:

 sys/sys/ctype_inline.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 116672382fa3 -r 71f453d6b80e sys/sys/ctype_inline.h
--- a/sys/sys/ctype_inline.h    Tue Feb 24 12:57:58 2015 +0000
+++ b/sys/sys/ctype_inline.h    Tue Feb 24 13:17:27 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ctype_inline.h,v 1.3 2013/04/13 10:21:21 joerg Exp $ */
+/* $NetBSD: ctype_inline.h,v 1.4 2015/02/24 13:17:27 joerg Exp $ */
 
 /*
  * Copyright (c) 1989 The Regents of the University of California.
@@ -66,7 +66,7 @@
 #define _toupper(c)    ((c) - 'a' + 'A')
 #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)
 #define        isblank(c)      ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_BL))
 #endif



Home | Main Index | Thread Index | Old Index