X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fglobals.h;h=4d83b31ef95eddefcdef8e19365d61969e14337b;hb=6fa968aaa8051da23cc3153a1c0e67addbea85f6;hp=4ffd653fc9fa4261afcf22482c361c0b9782a458;hpb=3a0f3612dc2bbf3e4e8e7395bcbbf8cd1791b963;p=sbcl.git diff --git a/src/runtime/globals.h b/src/runtime/globals.h index 4ffd653..4d83b31 100644 --- a/src/runtime/globals.h +++ b/src/runtime/globals.h @@ -22,7 +22,14 @@ #ifndef LANGUAGE_ASSEMBLY extern int foreign_function_call_active; -extern boolean stop_the_world; +extern size_t dynamic_space_size; + +#ifdef LISP_FEATURE_WIN32 +#define ENVIRON _environ +#else +#define ENVIRON environ +#endif +extern char **ENVIRON; #if defined(LISP_FEATURE_SB_THREAD) extern pthread_key_t specials;