Wrap over-long line; drop superfluous include.

This commit is contained in:
Robert Nordier 2000-11-20 20:35:35 +00:00
parent e97407b4f2
commit 3333ebb58f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68966
2 changed files with 2 additions and 3 deletions

View File

@ -70,9 +70,9 @@ main(int argc, char *argv[])
int cflag, vflag, c;
tmpdir = getenv("TMPDIR");
if (asprintf(&tname, "%s/kgzXXXXXXXXXX", tmpdir == NULL ? _PATH_TMP : tmpdir) == -1)
if (asprintf(&tname, "%s/kgzXXXXXXXXXX",
tmpdir == NULL ? _PATH_TMP : tmpdir) == -1)
errx(1, "Out of memory");
output = NULL;
cflag = vflag = 0;
while ((c = getopt(argc, argv, "cvf:l:o:")) != -1)

View File

@ -27,7 +27,6 @@
*/
#include <err.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>