From 9e4eb03fb4d705707c997316f8b3901ec9268891 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Sat, 13 Jan 2018 22:01:36 +0900 Subject: [PATCH] only use ape/limits.h on plan9 --- include/chibi/sexp.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/chibi/sexp.h b/include/chibi/sexp.h index 48e5f5ca..e19286f2 100644 --- a/include/chibi/sexp.h +++ b/include/chibi/sexp.h @@ -262,7 +262,11 @@ typedef uint32_t sexp_uint32_t; typedef int32_t sexp_int32_t; # endif #else +# ifdef PLAN9 # include +# else +# include +# endif # if UCHAR_MAX == 255 # define SEXP_UINT8_DEFINED 1 typedef unsigned char sexp_uint8_t;