Ticket #55415: patch-unsetenv@Tiger.diff
File patch-unsetenv@Tiger.diff, 367 bytes (added by ballapete (Peter "Pete" Dyballa), 7 years ago) |
---|
-
Utilities/cmlibuv/src/unix/core.
old new 1289 1289 1290 1290 1291 1291 int uv_os_unsetenv(const char* name) { 1292 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1050 1292 1293 if (unsetenv(name) != 0) 1293 1294 return -errno; 1294 1295 #else 1296 unsetenv(name); 1297 #endif 1295 1298 return 0; 1296 1299 } 1297 1300