From 6f5fac8d38a257d41f36025f5d31a6b0b0a0f1cb Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Sun, 12 Jul 2009 10:43:06 +0000 Subject: [PATCH] Fix accidental exclusion of _get_environ functions on ARM, and exclude them only on x86-64 as it seemed to have been intented svn path=/trunk/; revision=41920 --- reactos/include/crt/stdlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/crt/stdlib.h b/reactos/include/crt/stdlib.h index ba4ac799cd7..d6e92676c91 100644 --- a/reactos/include/crt/stdlib.h +++ b/reactos/include/crt/stdlib.h @@ -152,7 +152,7 @@ extern "C" { _CRTIMP extern char *_sys_errlist[]; _CRTIMP extern int _sys_nerr; -#if (defined(_X86_) && !defined(__x86_64)) +#if !defined(__x86_64) _CRTIMP int *__cdecl __p___argc(void); _CRTIMP char ***__cdecl __p___argv(void); _CRTIMP wchar_t ***__cdecl __p___wargv(void);