tadd errno - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 10b819c6bd493f345ab7bb7fa2dfbb87bba6aed9
DIR parent d993ae5d79640216ece4960ee7ee879387cd731f
HTML Author: rsc <devnull@localhost>
Date: Wed, 19 Jan 2005 19:12:48 +0000
add errno
Diffstat:
M src/cmd/eqn/e.h | 1 +
M src/cmd/eqn/input.c | 1 -
2 files changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/src/cmd/eqn/e.h b/src/cmd/eqn/e.h
t@@ -1,6 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <errno.h>
#undef sqrt
#define sqrt p9_sqrt
DIR diff --git a/src/cmd/eqn/input.c b/src/cmd/eqn/input.c
t@@ -1,7 +1,6 @@
#include "e.h"
#include "y.tab.h"
#include <ctype.h>
-#include <errno.h>
Infile infile[10];
Infile *curfile = infile;