summaryrefslogtreecommitdiff
path: root/system.h
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2010-01-04 14:21:42 +0200
committerPanu Matilainen <pmatilai@redhat.com>2010-01-04 14:21:42 +0200
commitbb803d630c585f5be8ed446da76dadcf717af1d7 (patch)
treebd6d009577ab78f77e0a7cc972293b08ff4ecba4 /system.h
parent580f9625e166be7771ead94f500e54a5b34d3196 (diff)
downloadlibrpm-tizen-bb803d630c585f5be8ed446da76dadcf717af1d7.tar.gz
librpm-tizen-bb803d630c585f5be8ed446da76dadcf717af1d7.tar.bz2
librpm-tizen-bb803d630c585f5be8ed446da76dadcf717af1d7.zip
Remove unnecessary setenv() replacement function
- setenv() and unsetenv() are required by POSIX 2001, we dont care about older systems
Diffstat (limited to 'system.h')
-rw-r--r--system.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/system.h b/system.h
index bb40b8d21..142d8a454 100644
--- a/system.h
+++ b/system.h
@@ -267,11 +267,6 @@ extern const char *__progname;
#include <strings.h>
#endif
-#if ! HAVE_SETENV
-extern int setenv(const char *name, const char *value, int replace);
-extern void unsetenv(const char *name);
-#endif
-
#if HAVE_POLL_H
#include <poll.h>
#else