summaryrefslogtreecommitdiff
path: root/usr.bin/make/util.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2005-02-16 15:11:52 +0000
committerchristos <christos@NetBSD.org>2005-02-16 15:11:52 +0000
commit63fca1366091cde6fda073e3035fdec3873df243 (patch)
treecc821e5d3f62046819e5c7eda1d86d105b220cf5 /usr.bin/make/util.c
parentda725d663a4307983bcdd44787459e29854695fc (diff)
PR/29203, PR/29204: Max Okumoto: KNF changes to make [no functional changes]
Diffstat (limited to 'usr.bin/make/util.c')
-rw-r--r--usr.bin/make/util.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/util.c b/usr.bin/make/util.c
index a051b60be8d..86ac1d49bb4 100644
--- a/usr.bin/make/util.c
+++ b/usr.bin/make/util.c
@@ -1,15 +1,15 @@
-/* $NetBSD: util.c,v 1.35 2004/05/07 00:04:40 ross Exp $ */
+/* $NetBSD: util.c,v 1.36 2005/02/16 15:11:53 christos Exp $ */
/*
* Missing stuff from OS's
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: util.c,v 1.35 2004/05/07 00:04:40 ross Exp $";
+static char rcsid[] = "$NetBSD: util.c,v 1.36 2005/02/16 15:11:53 christos Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: util.c,v 1.35 2004/05/07 00:04:40 ross Exp $");
+__RCSID("$NetBSD: util.c,v 1.36 2005/02/16 15:11:53 christos Exp $");
#endif
#endif
@@ -67,7 +67,7 @@ setenv(const char *name, const char *value, int dum)
{
char *p;
int len = strlen(name) + strlen(value) + 2; /* = \0 */
- char *ptr = (char*) emalloc(len);
+ char *ptr = emalloc(len);
(void) dum;