Fixed typos.

This commit is contained in:
Ward Fisher 2015-12-29 12:39:35 -07:00
parent 19cfaa9308
commit 023356ba9b
2 changed files with 3 additions and 3 deletions

View File

@ -165,13 +165,13 @@
/* End ncx_len */
#if __CHAR_UNSIGNED__
#ifdef __CHAR_UNSIGNED__
/* 'char' is unsigned, declare ncbyte as 'signed char' */
typedef signed char schar;
#else
/* 'char' is signed */
typedef signed char schar;
typedef char schar;
#endif /* __CHAR_UNSIGNED__ */

View File

@ -26,7 +26,7 @@
/* Limits of external types (based on those in ncx.h) */
#ifdef __UNSIGNED_CHAR__
#ifdef __CHAR_UNSIGNED__
#define X_CHAR_MIN SCHAR_MIN
#define X_CHAR_MAX SCHAR_MAX
#else