diff options
author | 2019-10-27 15:02:19 +0000 | |
---|---|---|
committer | 2019-10-27 15:02:19 +0000 | |
commit | fbcfde02f3961ff7e7df929279cf60c717d174ae (patch) | |
tree | 4eaf530cefb08fd55939cc68bbb0e5b83485e08f | |
parent | Don't fail hard if we can't preallocate history storage. (diff) | |
download | wireguard-openbsd-fbcfde02f3961ff7e7df929279cf60c717d174ae.tar.xz wireguard-openbsd-fbcfde02f3961ff7e7df929279cf60c717d174ae.zip |
No need for <sys/uio.h> as writev(2) isn't used any more.
-rw-r--r-- | bin/ksh/history.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/ksh/history.c b/bin/ksh/history.c index 37e091f2fc3..c768563496e 100644 --- a/bin/ksh/history.c +++ b/bin/ksh/history.c @@ -1,4 +1,4 @@ -/* $OpenBSD: history.c,v 1.83 2019/10/27 14:58:52 jca Exp $ */ +/* $OpenBSD: history.c,v 1.84 2019/10/27 15:02:19 jca Exp $ */ /* * command history @@ -13,7 +13,6 @@ */ #include <sys/stat.h> -#include <sys/uio.h> #include <errno.h> #include <fcntl.h> |