diff options
author | ache <ache@FreeBSD.org> | 1997-09-27 04:30:50 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-09-27 04:30:50 +0000 |
commit | 7ff32364470b4cefd857e17b0ecca26102035a6c (patch) | |
tree | 86c0e8f1e930d32ed7a879c4fa3326b89d558a1b /include | |
parent | a4d6990ae6cf1cf4bb4017ebfe40a090d4bbf1d0 (diff) | |
download | FreeBSD-src-7ff32364470b4cefd857e17b0ecca26102035a6c.zip FreeBSD-src-7ff32364470b4cefd857e17b0ecca26102035a6c.tar.gz |
Oops, fix typo in istype definition
Diffstat (limited to 'include')
-rw-r--r-- | include/_ctype.h | 2 | ||||
-rw-r--r-- | include/ctype.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/_ctype.h b/include/_ctype.h index 7309568..33e294c 100644 --- a/include/_ctype.h +++ b/include/_ctype.h @@ -88,7 +88,7 @@ int digittoint __P((int)); #endif __END_DECLS -#define __istype(c,f) (!!__maskrune((c),(f)) +#define __istype(c,f) (!!__maskrune((c),(f))) #define isalnum(c) __istype((c), _A|_D) #define isalpha(c) __istype((c), _A) diff --git a/include/ctype.h b/include/ctype.h index 7309568..33e294c 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -88,7 +88,7 @@ int digittoint __P((int)); #endif __END_DECLS -#define __istype(c,f) (!!__maskrune((c),(f)) +#define __istype(c,f) (!!__maskrune((c),(f))) #define isalnum(c) __istype((c), _A|_D) #define isalpha(c) __istype((c), _A) |