diff options
-rw-r--r-- | lib/libedit/read.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/libedit/read.c b/lib/libedit/read.c index d8d6628..e1e599e 100644 --- a/lib/libedit/read.c +++ b/lib/libedit/read.c @@ -34,19 +34,21 @@ * SUCH DAMAGE. */ -#if !defined(lint) && !defined(SCCSID) +#if !defined(lint) +#if 0 static char sccsid[] = "@(#)read.c 8.1 (Berkeley) 6/4/93"; - +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint && not SCCSID */ /* * read.c: Clean this junk up! This is horrible code. * Terminal read functions */ #include "sys.h" -#include <sys/errno.h> +#include <errno.h> #include <unistd.h> #include <stdlib.h> -extern int errno; #include "el.h" #define OKCMD -1 |