summaryrefslogtreecommitdiff
path: root/usr.sbin/config/mkmakefile.c
diff options
context:
space:
mode:
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);
}