summaryrefslogtreecommitdiff
path: root/notes.md
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-28 23:51:15 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-28 23:51:15 -0600
commit4d185da010aea1d307c8ff7807ef3d4359083ed0 (patch)
tree0eef6621e8cadfb827e35cc0f426fdebb6096d10 /notes.md
parent52d48b9ea39a990295fdaf53dea492637051bd10 (diff)
wip host net timeout
Diffstat (limited to 'notes.md')
-rw-r--r--notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/notes.md b/notes.md
index 255b765..5ecb152 100644
--- a/notes.md
+++ b/notes.md
@@ -15,7 +15,7 @@ Which file to include:
| `U{CHAR,SHRT,INT,LONG,LLONG}_MAX` | `<limits.h>` | |
|------------------------------------------|-----------------------------------|--------------------------------|
| C SIZED INTS | | |
-| `(C u)int{n}_t` (and `_{MIN,MAX,C}`) | `<stdint.h>` | exact |
+| `(u)int{n}_t` (and `_{MIN,MAX,C}`) | `<stdint.h>` | exact |
| `(u)int_least{n}_t` (and `_{MIN,MAX,C}`) | `<stdint.h>` | type may be more than `n` bits |
| `(u)int_fast{n}_t` (and `_{MIN,MAX,C}`) | `<stdint.h>` | type may be more than `n` bits |
| `(u)intptr_t` (and `_{MIN,MAX,C}`) | `<stdint.h>` | |