diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-10-12 07:58:41 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-10-12 07:58:41 +0000 |
commit | 7428d9e6d3fa161dad4326e6c5c6299c755f3ad6 (patch) | |
tree | e6ae160842f826c15d34186bedf4121bd8d34131 /bin | |
parent | b98a78c59b864130e74bc99b05f8add0460dd913 (diff) |
remove duplicate unistd.h include
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ed/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/ed/main.c b/bin/ed/main.c index 2776a30781f..5565552b43c 100644 --- a/bin/ed/main.c +++ b/bin/ed/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.69 2024/07/16 05:01:10 deraadt Exp $ */ +/* $OpenBSD: main.c,v 1.70 2024/10/12 07:58:40 jsg Exp $ */ /* $NetBSD: main.c,v 1.3 1995/03/21 09:04:44 cgd Exp $ */ /* main.c: This file contains the main control and user-interface routines @@ -44,7 +44,6 @@ #include <sys/ioctl.h> #include <sys/stat.h> #include <sys/wait.h> -#include <unistd.h> #include <ctype.h> #include <err.h> |