summaryrefslogtreecommitdiff
path: root/usr.sbin/config/mkmakefile.c
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-03-25 15:56:24 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-03-25 15:56:24 +0000
commit6967ae698477e809eb79f71e8ee2b9db37c9183a (patch)
tree1decc90a7a3407dfdf7cdc3ff4aa11c2aa9ef862 /usr.sbin/config/mkmakefile.c
parent22a628436b9c63f1069f0a15af3684d68574d575 (diff)
From NetBSD: merge of 960317
Diffstat (limited to 'usr.sbin/config/mkmakefile.c')
-rw-r--r--usr.sbin/config/mkmakefile.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c
index 5fe766b01e2..237ea6c1a17 100644
--- a/usr.sbin/config/mkmakefile.c
+++ b/usr.sbin/config/mkmakefile.c
@@ -1,3 +1,6 @@
+/* $OpenBSD: mkmakefile.c,v 1.2 1996/03/25 15:55:09 niklas Exp $ */
+/* $NetBSD: mkmakefile.c,v 1.27 1996/03/03 17:28:26 thorpej Exp $ */
+
/*
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
@@ -40,7 +43,6 @@
* SUCH DAMAGE.
*
* from: @(#)mkmakefile.c 8.1 (Berkeley) 6/6/93
- * $Id: mkmakefile.c,v 1.1 1995/10/18 08:48:34 deraadt Exp $
*/
#include <sys/param.h>
@@ -194,7 +196,7 @@ emitobjs(fp)
lpos += len + 1;
sp = ' ';
}
- if (lpos != 7 && putc('\n', fp) < 0)
+ if (putc('\n', fp) < 0)
return (1);
return (0);
}
@@ -276,7 +278,7 @@ emitfiles(fp, suffix)
sp = ' ';
}
}
- if (lpos != 7 && putc('\n', fp) < 0)
+ if (putc('\n', fp) < 0)
return (1);
return (0);
}