scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 3a43cec826fbc423f5765d562cc3a604704f6fbc
parent b2d5d321150534a6be5ee576a5bd9957ffe9e915
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 12 Dec 2017 12:47:58 +0000

[lib/c] Remove unneeded inclusion

Errno is not used anymore in the file, so the inclusion
can be removed without problems.

Diffstat:
Mlib/c/vfprintf.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/lib/c/vfprintf.c b/lib/c/vfprintf.c @@ -7,7 +7,6 @@ * even to read this file. */ #include <ctype.h> -#include <errno.h> #include <limits.h> #include <stdarg.h> #include <stdint.h>