From 6cbe7c26d5e9a2ea9ab293d3b616ace4432e526b Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 4 Jun 2018 09:39:41 +0200 Subject: Update syscall_descriptions_syntax.md clarify size of intptr --- docs/syscall_descriptions_syntax.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') 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]`. -- cgit mrf-deployment