mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-18 15:55:12 +08:00
Fixed typos.
This commit is contained in:
parent
19cfaa9308
commit
023356ba9b
@ -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__ */
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user