diff options
author | DJ Delorie <dj@delorie.com> | 2002-01-22 20:14:53 +0000 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2002-01-22 20:14:53 +0000 |
commit | d62bf15701f9040b0ff226c78a5fc734a1c5a1ce (patch) | |
tree | ca9e93ea7512a81b57fe3196cb79f1a891d162a9 /libiberty/setenv.c | |
parent | 5f5b983a9660d66cdfe71e34c13e25852c090065 (diff) | |
download | gdb-d62bf15701f9040b0ff226c78a5fc734a1c5a1ce.tar.gz |
merge from gcc
Diffstat (limited to 'libiberty/setenv.c')
-rw-r--r-- | libiberty/setenv.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libiberty/setenv.c b/libiberty/setenv.c index 79e38ed56b0..8394fafe4e1 100644 --- a/libiberty/setenv.c +++ b/libiberty/setenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1995, 1996, 1997, 2002 Free Software Foundation, Inc. This file based on setenv.c in the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -36,6 +36,9 @@ environment. This implementation is not safe for multithreaded code. # include <config.h> #endif +#define setenv libiberty_setenv +#define unsetenv libiberty_unsetenv + #include "ansidecl.h" #include <sys/types.h> /* For `size_t' */ #include <stdio.h> /* For `NULL' */ @@ -61,6 +64,9 @@ extern int errno; extern char **environ; #endif +#undef setenv +#undef unsetenv + /* LOCK and UNLOCK are defined as no-ops. This makes the libiberty * implementation MT-Unsafe. */ #define LOCK |