Module Name:    src
Committed By:   tron
Date:           Wed Nov 17 13:25:54 UTC 2010

Modified Files:
        src/lib/libc/stdlib: _env.c

Log Message:
Include "namespace.h" to get namespace protection.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libc/stdlib/_env.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/_env.c
diff -u src/lib/libc/stdlib/_env.c:1.4 src/lib/libc/stdlib/_env.c:1.5
--- src/lib/libc/stdlib/_env.c:1.4	Tue Nov 16 17:23:10 2010
+++ src/lib/libc/stdlib/_env.c	Wed Nov 17 13:25:53 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: _env.c,v 1.4 2010/11/16 17:23:10 tron Exp $ */
+/*	$NetBSD: _env.c,v 1.5 2010/11/17 13:25:53 tron Exp $ */
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -31,9 +31,11 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: _env.c,v 1.4 2010/11/16 17:23:10 tron Exp $");
+__RCSID("$NetBSD: _env.c,v 1.5 2010/11/17 13:25:53 tron Exp $");
 #endif /* LIBC_SCCS and not lint */
 
+#include "namespace.h"
+
 #include <sys/rbtree.h>
 
 #include <assert.h>

Reply via email to