diff options
| author | Larry Doolittle <ldoolitt@recycle.lbl.gov> | 2017-09-24 18:03:26 -0700 |
|---|---|---|
| committer | Larry Doolittle <ldoolitt@recycle.lbl.gov> | 2017-09-24 18:03:26 -0700 |
| commit | 1b6806e5bb39623c75b4aa8d8d6ffe1ef7ea46e7 (patch) | |
| tree | 07a87c82efa398bce0b3d663c72c7b8e52439a1e /win32 | |
| parent | 44d4da62bb6aabd9030960fa41c12c097158ce0b (diff) | |
| download | tinycc-1b6806e5bb39623c75b4aa8d8d6ffe1ef7ea46e7.tar.gz tinycc-1b6806e5bb39623c75b4aa8d8d6ffe1ef7ea46e7.tar.bz2 | |
Spelling fixes
Comments only, no change to functionality
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/include/conio.h | 2 | ||||
| -rw-r--r-- | win32/include/math.h | 2 | ||||
| -rw-r--r-- | win32/include/stdint.h | 2 | ||||
| -rw-r--r-- | win32/include/values.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/win32/include/conio.h b/win32/include/conio.h index 6c1dc97..39f779e 100644 --- a/win32/include/conio.h +++ b/win32/include/conio.h @@ -194,7 +194,7 @@ extern "C" { } /* Register sizes are different between 32/64 bit mode. So we have to do this for _WIN64 and _WIN32 - seperatly. */ + separately. */ #ifdef _WIN64 __CRT_INLINE void __writecr0(unsigned __int64 Data) diff --git a/win32/include/math.h b/win32/include/math.h index 297184f..74add20 100644 --- a/win32/include/math.h +++ b/win32/include/math.h @@ -327,7 +327,7 @@ extern "C" { #define isinf(x) (fpclassify(x) == FP_INFINITE) /* 7.12.3.4 */ - /* We don't need to worry about trucation here: + /* We don't need to worry about truncation here: A NaN stays a NaN. */ #define isnan(x) (fpclassify(x) == FP_NAN) diff --git a/win32/include/stdint.h b/win32/include/stdint.h index cdebf44..cde32b6 100644 --- a/win32/include/stdint.h +++ b/win32/include/stdint.h @@ -178,7 +178,7 @@ typedef unsigned long long uintmax_t; /* 7.18.4.1 Macros for minimum-width integer constants - Accoding to Douglas Gwyn <gwyn@arl.mil>: + According to Douglas Gwyn <gwyn@arl.mil>: "This spec was changed in ISO/IEC 9899:1999 TC1; in ISO/IEC 9899:1999 as initially published, the expansion was required to be an integer constant of precisely matching type, which diff --git a/win32/include/values.h b/win32/include/values.h index 10e16a2..1cd643c 100644 --- a/win32/include/values.h +++ b/win32/include/values.h @@ -1,4 +1,4 @@ /* * TODO: Nothing here yet. Should provide UNIX compatibility constants - * comparible to those in limits.h and float.h. + * comparable to those in limits.h and float.h. */ |
