From d4503a05a47b94e65eaaf47910234abe835bc47a Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Tue, 30 Jul 2019 14:22:33 -0400 Subject: [PATCH] mention that cstdlib is included in lmptype.h now, too. --- doc/include-file-conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/include-file-conventions.md b/doc/include-file-conventions.md index c9f8bd5cb1..132f2ec4eb 100644 --- a/doc/include-file-conventions.md +++ b/doc/include-file-conventions.md @@ -107,7 +107,7 @@ Include files should be included in this order: #### pointers.h The `pointer.h` header file also includes `cstdio` and `lmptype.h` -(and through it `stdint.h`, `intttypes.h`, and `climits`). +(and through it `stdint.h`, `intttypes.h`, cstdlib, and `climits`). This means any header including `pointers.h` can assume that `FILE`, `NULL`, `INT_MAX` are defined.