Browse Source

fix typo; noticed by David Krause

OPENBSD_3_3
millert 21 years ago
parent
commit
67eb2617d7
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/include/ctype.h

+ 2
- 2
src/include/ctype.h View File

@ -1,4 +1,4 @@
/* $OpenBSD: ctype.h,v 1.8 2002/12/14 02:34:38 millert Exp $ */
/* $OpenBSD: ctype.h,v 1.9 2002/12/14 14:26:19 millert Exp $ */
/* $NetBSD: ctype.h,v 1.14 1994/10/26 00:55:47 cgd Exp $ */
/*
@ -134,7 +134,7 @@ static __inline int isspace(int c)
static __inline int isupper(int c)
{
return (c == EOF ? : (_ctype_ + 1)[(unsigned int)c] & _U);
return (c == EOF ? 0 : (_ctype_ + 1)[(unsigned int)c] & _U);
}
static __inline int isxdigit(int c)


Loading…
Cancel
Save