X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Falloc.h;h=54f6902cdadbe6d0595c06f59a79cda6937387a6;hb=9b1fade83db8453b75b8c7380eb12ce41b5b889c;hp=361d5cb7d708509fe3a075b43e6a752a5bc1c124;hpb=e0697854ef9f4999c8585b64be1b282ce4725176;p=sbcl.git diff --git a/src/runtime/alloc.h b/src/runtime/alloc.h index 361d5cb..54f6902 100644 --- a/src/runtime/alloc.h +++ b/src/runtime/alloc.h @@ -12,8 +12,13 @@ #ifndef _ALLOC_H_ #define _ALLOC_H_ +#include "sbcl.h" #include "runtime.h" +#ifdef LISP_FEATURE_GENCGC +extern lispobj *alloc(long bytes); +#endif + extern lispobj alloc_cons(lispobj car, lispobj cdr); extern lispobj alloc_number(long n); extern lispobj alloc_string(char *str);