diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-06-04 09:39:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-04 09:39:41 +0200 |
| commit | 6cbe7c26d5e9a2ea9ab293d3b616ace4432e526b (patch) | |
| tree | 53ae90051c904ac7cf70d99b2da7422dd08e9351 /docs/syscall_descriptions_syntax.md | |
| parent | 2f93b54f26aa40233a0a584ce8714e55c8dd159a (diff) | |
Update syscall_descriptions_syntax.md
clarify size of intptr
Diffstat (limited to 'docs/syscall_descriptions_syntax.md')
| -rw-r--r-- | docs/syscall_descriptions_syntax.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/syscall_descriptions_syntax.md b/docs/syscall_descriptions_syntax.md index 4708dc804..c3159155e 100644 --- a/docs/syscall_descriptions_syntax.md +++ b/docs/syscall_descriptions_syntax.md @@ -75,9 +75,9 @@ flagname = "\"" literal "\"" ["," "\"" literal "\""]* ## Ints -You can use `int8`, `int16`, `int32`, `int64` and `int64` to denote an integer of the corresponding size. +`int8`, `int16`, `int32` and `int64` denote an integer of the corresponding size. `intptr` denotes a pointer-sized integer, i.e. C `long` type. -By appending `be` suffix (like `int16be`) integers become big-endian. +By appending `be` suffix (e.g. `int16be`) integers become big-endian. It's possible to specify range of values for an integer in the format of `int32[0:100]`. |
