X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Falloc.h;h=ef3df77e414555ffc5bae0275b0d735344247527;hb=25d55fff07e7eb37ad976f980cb440cdd95ff326;hp=0f2714c4c182b73bcac72dde52d194aba9cd6f05;hpb=cf4cb9554515c59eddbde38d1cf236339c37f55f;p=sbcl.git diff --git a/src/runtime/alloc.h b/src/runtime/alloc.h index 0f2714c..ef3df77 100644 --- a/src/runtime/alloc.h +++ b/src/runtime/alloc.h @@ -14,11 +14,17 @@ #include "sbcl.h" #include "runtime.h" +#include "gc-internal.h" + +#ifdef LISP_FEATURE_GENCGC +extern lispobj *general_alloc(long bytes, int page_type_flag); +#endif extern lispobj alloc_cons(lispobj car, lispobj cdr); 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_ */