Module Name:    src
Committed By:   joerg
Date:           Tue Feb 24 13:17:27 UTC 2015

Modified Files:
        src/sys/sys: ctype_inline.h

Log Message:
Fix spelling of feature test macro.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/sys/ctype_inline.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/ctype_inline.h
diff -u src/sys/sys/ctype_inline.h:1.3 src/sys/sys/ctype_inline.h:1.4
--- src/sys/sys/ctype_inline.h:1.3	Sat Apr 13 10:21:21 2013
+++ src/sys/sys/ctype_inline.h	Tue Feb 24 13:17:27 2015
@@ -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

Reply via email to