summaryrefslogtreecommitdiff
path: root/src/unix/posix.h
diff options
context:
space:
mode:
authorPhilip Kelley <phkelley@hotmail.com>2014-04-19 18:05:31 -0400
committerPhilip Kelley <phkelley@hotmail.com>2014-04-19 21:50:44 -0400
commitc2c8161541e54689926ec1f463569d5d1b975503 (patch)
treed3d1f7096c6449a9d9e19747508ad08cc910d8fe /src/unix/posix.h
parentbfc50f83f829afe52c10f615c4f7efa478a83098 (diff)
downloadlibgit2-c2c8161541e54689926ec1f463569d5d1b975503.tar.gz
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 */