summaryrefslogtreecommitdiff
path: root/src/unix/posix.h
diff options
context:
space:
mode:
authorVicent Marti <vicent@github.com>2014-04-23 07:13:49 -0700
committerVicent Marti <vicent@github.com>2014-04-23 07:13:49 -0700
commit5ca410b9a9bc30a65ed0125646b3702d5943100b (patch)
tree7c352c4382def6eaee007745f3f932659b10d827 /src/unix/posix.h
parent5b58d6f78cf8346445374eaf5cde0f54be5c5796 (diff)
parent7110000dd5b82c86863633ee37f72ac876a44476 (diff)
downloadlibgit2-5ca410b9a9bc30a65ed0125646b3702d5943100b.tar.gz
Merge pull request #2283 from phkelley/win32_fs
Win32: UTF-8 <-> WCHAR conversion overhaul
Diffstat (limited to 'src/unix/posix.h')
-rw-r--r--src/unix/posix.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/unix/posix.h b/src/unix/posix.h
index 9c9f837b9..1e41bcf18 100644
--- a/src/unix/posix.h
+++ b/src/unix/posix.h
@@ -28,7 +28,6 @@ char *p_realpath(const char *, char *);
#define p_vsnprintf(b, c, f, a) vsnprintf(b, c, f, a)
#define p_snprintf(b, c, f, ...) snprintf(b, c, f, __VA_ARGS__)
#define p_mkstemp(p) mkstemp(p)
-#define p_setenv(n,v,o) setenv(n,v,o)
#define p_inet_pton(a, b, c) inet_pton(a, b, c)
/* see win32/posix.h for explanation about why this exists */