diff options
author | dt <dt@FreeBSD.org> | 1999-02-14 22:22:54 +0000 |
---|---|---|
committer | dt <dt@FreeBSD.org> | 1999-02-14 22:22:54 +0000 |
commit | d17e2b06434886c1783ba63ef7535a4b906e6a10 (patch) | |
tree | 1553a3304353ed486f95396eb3898a70e1b2c5e3 /usr.bin/make | |
parent | 76fbb6ae0ff2c452013d072613cd0fd6777df4eb (diff) | |
download | FreeBSD-src-d17e2b06434886c1783ba63ef7535a4b906e6a10.zip FreeBSD-src-d17e2b06434886c1783ba63ef7535a4b906e6a10.tar.gz |
Remove couple of 'extern int errno'. (They turned to something funny when
<errno.h> included).
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/job.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index aa42d58..1525b7c 100644 --- a/usr.bin/make/job.c +++ b/usr.bin/make/job.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: job.c,v 1.10 1998/08/24 10:15:53 cracauer Exp $ + * $Id: job.c,v 1.11 1998/11/14 16:15:04 dg Exp $ */ #ifndef lint @@ -125,8 +125,6 @@ static char sccsid[] = "@(#)job.c 8.2 (Berkeley) 3/19/94"; # define STATIC static #endif -extern int errno; - /* * error handling variables */ @@ -1591,7 +1589,6 @@ JobRestart(job) * resume it. */ Boolean error; - extern int errno; int status; #ifdef RMT_WANTS_SIGNALS |