X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Falloc.h;h=c4fd37a42658bac04aac1ba6ee8a095c90d1f638;hb=37d3828773e2f847bb1ed7522b0af4fb8e736fc8;hp=ef3df77e414555ffc5bae0275b0d735344247527;hpb=fee931bde89778322557461356580752bc819cbf;p=sbcl.git diff --git a/src/runtime/alloc.h b/src/runtime/alloc.h index ef3df77..c4fd37a 100644 --- a/src/runtime/alloc.h +++ b/src/runtime/alloc.h @@ -17,11 +17,11 @@ #include "gc-internal.h" #ifdef LISP_FEATURE_GENCGC -extern lispobj *general_alloc(long bytes, int page_type_flag); +extern lispobj *general_alloc(sword_t bytes, int page_type_flag); #endif extern lispobj alloc_cons(lispobj car, lispobj cdr); -extern lispobj alloc_number(long n); +extern lispobj alloc_number(sword_t n); extern lispobj alloc_string(char *str); extern lispobj alloc_sap(void *ptr); extern lispobj alloc_base_string(char *str);