diff options
Diffstat (limited to 'lst.lib/lstAtEnd.c')
-rw-r--r-- | lst.lib/lstAtEnd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lst.lib/lstAtEnd.c b/lst.lib/lstAtEnd.c index 10f191a2060c..4eadfdb0e7f3 100644 --- a/lst.lib/lstAtEnd.c +++ b/lst.lib/lstAtEnd.c @@ -1,4 +1,4 @@ -/* $NetBSD: lstAtEnd.c,v 1.13 2009/01/23 21:26:30 dsl Exp $ */ +/* $NetBSD: lstAtEnd.c,v 1.14 2020/07/03 08:37:56 rillig Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 @@ -33,14 +33,14 @@ */ #ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: lstAtEnd.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"; +static char rcsid[] = "$NetBSD: lstAtEnd.c,v 1.14 2020/07/03 08:37:56 rillig Exp $"; #else #include <sys/cdefs.h> #ifndef lint #if 0 static char sccsid[] = "@(#)lstAtEnd.c 8.1 (Berkeley) 6/6/93"; #else -__RCSID("$NetBSD: lstAtEnd.c,v 1.13 2009/01/23 21:26:30 dsl Exp $"); +__RCSID("$NetBSD: lstAtEnd.c,v 1.14 2020/07/03 08:37:56 rillig Exp $"); #endif #endif /* not lint */ #endif @@ -75,5 +75,5 @@ Lst_AtEnd(Lst l, void *d) LstNode end; end = Lst_Last(l); - return (Lst_InsertAfter(l, end, d)); + return Lst_InsertAfter(l, end, d); } |