MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add compat_unsetenv wrapper

+5
+5
include/compat.h
··· 119 119 return _putenv_s(name, value); 120 120 } 121 121 122 + static inline int compat_unsetenv(const char *name) { 123 + return _putenv_s(name, ""); 124 + } 125 + 122 126 #define realpath compat_realpath 123 127 #define timegm compat_timegm 124 128 #define usleep compat_usleep ··· 128 132 #define basename compat_basename 129 133 #define dirname compat_dirname 130 134 #define setenv compat_setenv 135 + #define unsetenv compat_unsetenv 131 136 132 137 typedef unsigned int useconds_t; 133 138 typedef unsigned int uid_t;