mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Oops, fix typo in istype definition
This commit is contained in:
parent
917065108a
commit
659ad3a4a1
2 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue