plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 10b819c6bd493f345ab7bb7fa2dfbb87bba6aed9
parent d993ae5d79640216ece4960ee7ee879387cd731f
Author: rsc <devnull@localhost>
Date:   Wed, 19 Jan 2005 19:12:48 +0000

add errno

Diffstat:
Msrc/cmd/eqn/e.h | 1+
Msrc/cmd/eqn/input.c | 1-
2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cmd/eqn/e.h b/src/cmd/eqn/e.h @@ -1,6 +1,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <errno.h> #undef sqrt #define sqrt p9_sqrt diff --git a/src/cmd/eqn/input.c b/src/cmd/eqn/input.c @@ -1,7 +1,6 @@ #include "e.h" #include "y.tab.h" #include <ctype.h> -#include <errno.h> Infile infile[10]; Infile *curfile = infile;