Module Name: src Committed By: matt Date: Thu Apr 25 07:08:57 UTC 2013
Modified Files: src/lib/libc/stdlib: putenv.c Log Message: Remove weak_alias since that's now in the compat_putenv.c To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/lib/libc/stdlib/putenv.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/stdlib/putenv.c diff -u src/lib/libc/stdlib/putenv.c:1.19 src/lib/libc/stdlib/putenv.c:1.20 --- src/lib/libc/stdlib/putenv.c:1.19 Sun Nov 14 18:11:43 2010 +++ src/lib/libc/stdlib/putenv.c Thu Apr 25 07:08:56 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: putenv.c,v 1.19 2010/11/14 18:11:43 tron Exp $ */ +/* $NetBSD: putenv.c,v 1.20 2013/04/25 07:08:56 matt Exp $ */ /*- * Copyright (c) 1988, 1993 @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)putenv.c 8.2 (Berkeley) 3/27/94"; #else -__RCSID("$NetBSD: putenv.c,v 1.19 2010/11/14 18:11:43 tron Exp $"); +__RCSID("$NetBSD: putenv.c,v 1.20 2013/04/25 07:08:56 matt Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -49,10 +49,6 @@ __RCSID("$NetBSD: putenv.c,v 1.19 2010/1 #include "reentrant.h" #include "local.h" -#ifdef __weak_alias -__weak_alias(putenv,_putenv) -#endif - int putenv(char *str) {