X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Falloc.h;h=3735f9fe0387b025cef3c530f2b3928df90c08e2;hb=57d7dd0f59b9df89feb1175b0efc449bb0b8d400;hp=178ad6f88806d07f74cc49d2bdf9404746beb1b0;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/runtime/alloc.h b/src/runtime/alloc.h index 178ad6f..3735f9f 100644 --- a/src/runtime/alloc.h +++ b/src/runtime/alloc.h @@ -12,11 +12,17 @@ #ifndef _ALLOC_H_ #define _ALLOC_H_ +#include "sbcl.h" #include "runtime.h" +#ifdef LISP_FEATURE_GENCGC +extern lispobj *alloc(int bytes); +#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); -#endif _ALLOC_H_ +#endif /* _ALLOC_H_ */