X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Falloc.h;h=ef3df77e414555ffc5bae0275b0d735344247527;hb=711389a80032e3a21719f8a5bac7984deec2ae43;hp=3735f9fe0387b025cef3c530f2b3928df90c08e2;hpb=4023b1bec2412344e5eea4a33cd85dd662149c67;p=sbcl.git diff --git a/src/runtime/alloc.h b/src/runtime/alloc.h index 3735f9f..ef3df77 100644 --- a/src/runtime/alloc.h +++ b/src/runtime/alloc.h @@ -14,9 +14,10 @@ #include "sbcl.h" #include "runtime.h" +#include "gc-internal.h" #ifdef LISP_FEATURE_GENCGC -extern lispobj *alloc(int bytes); +extern lispobj *general_alloc(long bytes, int page_type_flag); #endif extern lispobj alloc_cons(lispobj car, lispobj cdr); @@ -24,5 +25,6 @@ extern lispobj alloc_number(long n); extern lispobj alloc_string(char *str); extern lispobj alloc_sap(void *ptr); extern lispobj alloc_base_string(char *str); +extern lispobj alloc_code_object(unsigned boxed, unsigned unboxed); #endif /* _ALLOC_H_ */