diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2001-03-10 16:56:09 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2001-03-10 16:56:09 +0000 |
commit | e6e2e95aa53f876e25bee2b0f867350c4a2ddf7a (patch) | |
tree | 86bf55ed09f3c4b5ce871e4856bb176871c9a341 /libguile/simpos.c | |
parent | 451d273ac98c0b7f0e5e2c9e267ff14170babf23 (diff) | |
download | guile-e6e2e95aa53f876e25bee2b0f867350c4a2ddf7a.tar.gz |
* _scm.h: Removed #include <errno.h>.
* error.c, net_db.c, putenv.c, stime.c: Removed declaration of
errno variable (can be a macro on some systems, for example when
using linux libc with threads).
* error.c, filesys.c, gc.c, ioext.c, iselect.c, net_db.c, ports.c,
posix.c, print.c, putenv.c, scmsigs.c, script.c, simpos.c, smob.c,
socket.c, srcprop.c, stime.c, strop.c, unif.c, vports.c: Added
#include <errno.h> in these 20 out of 100 files.
Diffstat (limited to 'libguile/simpos.c')
-rw-r--r-- | libguile/simpos.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libguile/simpos.c b/libguile/simpos.c index db0c04beb..e847ce0d5 100644 --- a/libguile/simpos.c +++ b/libguile/simpos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995,1996,1997,1998, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,1997,1998, 2000, 2001 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -44,6 +44,8 @@ +#include <errno.h> + #include "libguile/_scm.h" #include "libguile/scmsigs.h" |