/netbsd-src/external/gpl3/gdb/dist/gnulib/import/ |
H A D | unsetenv.c | 51 # define unsetenv __unsetenv in __libc_lock_define_initialized() macro 57 unsetenv (const char *name) in __libc_lock_define_initialized() 93 # undef unsetenv 94 weak_alias (__unsetenv, unsetenv) 99 # undef unsetenv 102 extern void unsetenv (const char *); 104 extern int unsetenv (const char *); 123 unsetenv (name);
|
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/m4/ |
H A D | setenv.m4 | 72 AC_CHECK_DECLS_ONCE([unsetenv]) 76 AC_CHECK_FUNCS([unsetenv]) 82 AC_CACHE_CHECK([for unsetenv() return type], [gt_cv_func_unsetenv_ret], 87 #define _BSD 1 /* unhide unsetenv declaration in OSF/1 5.1 <stdlib.h> */ 93 int unsetenv (const char *name); 99 AC_DEFINE([VOID_UNSETENV], [1], [Define to 1 if unsetenv returns void 104 dnl Solaris 10 unsetenv does not remove all copies of a name. 105 dnl Haiku alpha 2 unsetenv gets confused by assignment to environ. 106 dnl OpenBSD 4.7 unsetenv("") does not fail. 107 AC_CACHE_CHECK([whether unsetenv obeys POSIX], [all …]
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/ |
H A D | gettext-4-prg.c | 42 unsetenv ("LANGUAGE"); in main() 43 unsetenv ("LC_ALL"); in main() 44 unsetenv ("LC_MESSAGES"); in main() 45 unsetenv ("LC_CTYPE"); in main() 46 unsetenv ("LANG"); in main() 47 unsetenv ("OUTPUT_CHARSET"); in main()
|
H A D | gettext-3-prg.c | 58 unsetenv ("LANGUAGE"); in main() 59 unsetenv ("LC_ALL"); in main() 60 unsetenv ("LC_MESSAGES"); in main() 61 unsetenv ("LC_CTYPE"); in main() 62 unsetenv ("LANG"); in main() 63 unsetenv ("OUTPUT_CHARSET"); in main()
|
H A D | gettext-5-prg.c | 40 unsetenv ("LANGUAGE"); in main() 41 unsetenv ("OUTPUT_CHARSET"); in main()
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-m4/ |
H A D | setenv.m4 | 9 AC_REPLACE_FUNCS(setenv unsetenv) 16 AC_CACHE_CHECK([for unsetenv() return type], gt_cv_func_unsetenv_ret, 23 int unsetenv (const char *name); 25 int unsetenv(); 29 AC_DEFINE(VOID_UNSETENV, 1, [Define if unsetenv() returns void, not int.]) 63 # Prerequisites of lib/unsetenv.c.
|
/netbsd-src/external/gpl2/xcvs/dist/m4/ |
H A D | setenv.m4 | 9 AC_REPLACE_FUNCS(setenv unsetenv) 16 AC_CACHE_CHECK([for unsetenv() return type], gt_cv_func_unsetenv_ret, 23 int unsetenv (const char *name); 25 int unsetenv(); 29 AC_DEFINE(VOID_UNSETENV, 1, [Define if unsetenv() returns void, not int.]) 64 # Prerequisites of lib/unsetenv.c.
|
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/gnulib-m4/ |
H A D | setenv.m4 | 9 AC_REPLACE_FUNCS(setenv unsetenv) 16 AC_CACHE_CHECK([for unsetenv() return type], gt_cv_func_unsetenv_ret, 23 int unsetenv (const char *name); 25 int unsetenv(); 29 AC_DEFINE(VOID_UNSETENV, 1, [Define if unsetenv() returns void, not int.]) 63 # Prerequisites of lib/unsetenv.c.
|
/netbsd-src/tests/lib/libc/stdlib/ |
H A D | t_getenv.c | 88 ATF_CHECK(unsetenv("EVIL") != -1); in ATF_TC_BODY() 110 ATF_CHECK(unsetenv("crap") != -1); in ATF_TC_BODY() 147 ATF_CHECK(unsetenv(name) != -1); in ATF_TC_BODY() 149 ATF_CHECK(unsetenv(name) != -1); in ATF_TC_BODY() 178 ATF_CHECK(unsetenv("mixedcrap") != -1); in ATF_TC_BODY() 185 ATF_CHECK(unsetenv("mixedcrap") != -1); in ATF_TC_BODY()
|
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/ |
H A D | unsetenv.c | 49 # define unsetenv __unsetenv in __libc_lock_define_initialized() macro 54 unsetenv (const char *name) in __libc_lock_define_initialized() 90 # undef unsetenv 91 weak_alias (__unsetenv, unsetenv)
|
H A D | setenv.h | 42 # define unsetenv(name) ((unsetenv)(name), 0) macro 48 extern int unsetenv (const char *name);
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
H A D | unsetenv.c | 49 # define unsetenv __unsetenv in __libc_lock_define_initialized() macro 54 unsetenv (const char *name) in __libc_lock_define_initialized() 90 # undef unsetenv 91 weak_alias (__unsetenv, unsetenv)
|
H A D | setenv.h | 42 # define unsetenv(name) ((unsetenv)(name), 0) macro 48 extern int unsetenv (const char *name);
|
/netbsd-src/external/gpl2/xcvs/dist/lib/ |
H A D | unsetenv.c | 59 # define unsetenv __unsetenv in __libc_lock_define_initialized() macro 64 unsetenv (const char *name) in __libc_lock_define_initialized() 100 # undef unsetenv 101 weak_alias (__unsetenv, unsetenv)
|
H A D | setenv.h | 42 # define unsetenv(name) ((unsetenv)(name), 0) macro 48 extern int unsetenv (const char *name);
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/ |
H A D | env_test.cpp | 41 utils::unsetenv("test-missing"); in ATF_TEST_CASE_BODY() 113 ATF_TEST_CASE_WITHOUT_HEAD(unsetenv); 114 ATF_TEST_CASE_BODY(unsetenv) in ATF_TEST_CASE_BODY() argument 117 utils::unsetenv("PATH"); in ATF_TEST_CASE_BODY() 128 ATF_ADD_TEST_CASE(tcs, unsetenv); in ATF_INIT_TEST_CASES()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/ |
H A D | stdlib.d | 149 int unsetenv(const scope char*); in version() 156 int unsetenv(const scope char*); in version() 163 int unsetenv(const scope char*); in version() 171 alias __unsetenv13 unsetenv; in version() local 177 int unsetenv(const scope char*); in version() 184 int unsetenv(const scope char*); in version() 191 int unsetenv(const scope char*); in version() 198 int unsetenv(const scope char*); in version() 205 int unsetenv(const scope char*); in version() 210 int unsetenv(const scope char*); in version()
|
/netbsd-src/lib/libc/compat/stdlib/ |
H A D | compat_unsetenv.c | 53 __weak_alias(unsetenv,_unsetenv) in __weak_alias() argument 58 __warn_references(unsetenv, in __weak_alias() 67 unsetenv(const char *name) in __weak_alias()
|
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/libcollector/ |
H A D | envmgmt.c | 768 int unsetenv () __attribute__ ((weak, alias ("__collector_unsetenv"))); 774 if (CALL_UTIL (unsetenv) == __collector_unsetenv || in __collector_unsetenv() 775 CALL_UTIL (unsetenv) == NULL) in __collector_unsetenv() 777 CALL_UTIL (unsetenv) = (int(*)())dlsym (RTLD_NEXT, "unsetenv"); in __collector_unsetenv() 778 if (CALL_UTIL (unsetenv) == NULL || CALL_UTIL (unsetenv) == __collector_unsetenv) in __collector_unsetenv() 779 CALL_UTIL (unsetenv) = (int(*)())dlsym (RTLD_DEFAULT, "unsetenv"); in __collector_unsetenv() 780 if (CALL_UTIL (unsetenv) == NULL || CALL_UTIL (unsetenv) == __collector_unsetenv) in __collector_unsetenv() 787 int ret = CALL_UTIL (unsetenv)(name); in __collector_unsetenv()
|
/netbsd-src/external/gpl3/binutils/dist/gprofng/libcollector/ |
H A D | envmgmt.c | 768 int unsetenv () __attribute__ ((weak, alias ("__collector_unsetenv"))); 774 if (CALL_UTIL (unsetenv) == __collector_unsetenv || in __collector_unsetenv() 775 CALL_UTIL (unsetenv) == NULL) in __collector_unsetenv() 777 CALL_UTIL (unsetenv) = (int(*)())dlsym (RTLD_NEXT, "unsetenv"); in __collector_unsetenv() 778 if (CALL_UTIL (unsetenv) == NULL || CALL_UTIL (unsetenv) == __collector_unsetenv) in __collector_unsetenv() 779 CALL_UTIL (unsetenv) = (int(*)())dlsym (RTLD_DEFAULT, "unsetenv"); in __collector_unsetenv() 780 if (CALL_UTIL (unsetenv) == NULL || CALL_UTIL (unsetenv) == __collector_unsetenv) in __collector_unsetenv() 787 int ret = CALL_UTIL (unsetenv)(name); in __collector_unsetenv()
|
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/ |
H A D | setenv.c | 41 #define unsetenv libiberty_unsetenv macro 67 #undef unsetenv 163 unsetenv (const char *name) in unsetenv() function
|
/netbsd-src/external/gpl3/binutils/dist/libiberty/ |
H A D | setenv.c | 41 #define unsetenv libiberty_unsetenv macro 67 #undef unsetenv 163 unsetenv (const char *name) in unsetenv() function
|
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/ |
H A D | setenv.c | 41 #define unsetenv libiberty_unsetenv macro 67 #undef unsetenv 163 unsetenv (const char *name) in unsetenv() function
|
/netbsd-src/external/gpl3/gcc/dist/libiberty/ |
H A D | setenv.c | 41 #define unsetenv libiberty_unsetenv macro 67 #undef unsetenv 163 unsetenv (const char *name) in unsetenv() function
|
/netbsd-src/external/bsd/tmux/dist/ |
H A D | osdep-darwin.c | 105 unsetenv("EVENT_NOKQUEUE"); in osdep_event_init() 106 unsetenv("EVENT_NOPOLL"); in osdep_event_init()
|