From 6135c5414b494f071adae8d815022b0ae5e685d8 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 12 Sep 2016 20:51:59 +0200 Subject: [PATCH] Remove UL suffix from BUFSIZ. --- libc/include/stdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/include/stdio.h b/libc/include/stdio.h index 167eb7aa..26c43922 100644 --- a/libc/include/stdio.h +++ b/libc/include/stdio.h @@ -98,7 +98,7 @@ typedef __off_t fpos_t; #endif /* Size of buffers. */ -#define BUFSIZ 8192UL +#define BUFSIZ 8192 /* Constants used by `fparsemode'. */ #if __USE_SORTIX