X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fruntime%2Falloc.h;h=54f6902cdadbe6d0595c06f59a79cda6937387a6;hb=f87f749ba5ffeb2e51b28c83d01ac7e33a5ca76d;hp=5cfd2d833bbfcdb2b4ce517bb0b5ba35cf5acde8;hpb=a530bbe337109d898d5b4a001fc8f1afa3b5dc39;p=sbcl.git diff --git a/src/runtime/alloc.h b/src/runtime/alloc.h index 5cfd2d8..54f6902 100644 --- a/src/runtime/alloc.h +++ b/src/runtime/alloc.h @@ -9,18 +9,20 @@ * files for more information. */ -/* - * $Header$ - */ - #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); extern lispobj alloc_sap(void *ptr); +extern lispobj alloc_base_string(char *str); -#endif _ALLOC_H_ +#endif /* _ALLOC_H_ */