Searched defs:getenv (Results 1 - 5 of 5) sorted by relevance

/ast/src/lib/libast/misc/
H A Dgetenv.c25 __STDPP__directive pragma pp:hide getenv
31 __STDPP__directive pragma pp:nohide getenv
48 #if _UWIN && !defined(getenv)
89 #if defined(__EXPORT__) && defined(getenv)
94 getenv(const char* name) function
96 #if _UWIN && !defined(getenv) /* for ast54 compatibility */
104 posix_getenv = (char*(*)(const char*))GetProcAddress(dll, "getenv");
110 #undef getenv
111 return intercepts.intercept_getenv ? (*intercepts.intercept_getenv)(name) : getenv(name);
/ast/src/lib/libast/include/
H A Dast_std.h113 #undef getenv macro
114 #define getenv _ast_getenv macro
119 extern char* getenv(const char*);
/ast/src/cmd/ksh93/include/
H A Dshell.h166 #undef getenv /* -lshell provides its own */ macro
/ast/src/lib/libast/vmalloc/
H A Dmalloc.c41 extern char* getenv(const char*);
206 #define getenv(s) lcl_getenv(s) macro
259 /* if getenv() calls malloc(), the options may not affect the eventual region */
1282 if (s = getenv("VMALLOC_OPTIONS"))
/ast/src/cmd/ksh93/sh/
H A Dname.c3131 * This version of getenv uses the hash storage to access environment values
3151 * Some dynamic linkers will make this file see the libc getenv(),
3153 * getenv() is provided for static links.
3155 char *getenv(const char *name) function
3196 * Same linker dance as with getenv() above.

Completed in 34 milliseconds