diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-04-07 13:11:37 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-04-07 13:11:37 +0000 |
commit | d62260efbb210817cdf2745812dff843031c5840 (patch) | |
tree | ebc4ba9c0621c6491f9d8efd979ae4c81228fa93 /usr.bin/make/lst.lib/lstReplace.c | |
parent | b6a90d9cabfe2b5212651fce2cc785fffd80893f (diff) |
ISO function declarations, trim a few comments, rename a few variables to
more explicit/more consistent names.
okay otto@
Diffstat (limited to 'usr.bin/make/lst.lib/lstReplace.c')
-rw-r--r-- | usr.bin/make/lst.lib/lstReplace.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/make/lst.lib/lstReplace.c b/usr.bin/make/lst.lib/lstReplace.c index 5f88f6c7357..897b650aefe 100644 --- a/usr.bin/make/lst.lib/lstReplace.c +++ b/usr.bin/make/lst.lib/lstReplace.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: lstReplace.c,v 1.13 2003/06/03 02:56:12 millert Exp $ */ +/* $OpenBSD: lstReplace.c,v 1.14 2004/04/07 13:11:36 espie Exp $ */ /* $NetBSD: lstReplace.c,v 1.5 1996/11/06 17:59:51 christos Exp $ */ /* @@ -49,9 +49,7 @@ *----------------------------------------------------------------------- */ void -Lst_Replace(ln, d) - LstNode ln; - void *d; +Lst_Replace(LstNode ln, void *d) { if (ln != NULL) ln->datum = d; |