Clean up RCS ids
[projects/cmucl/cmucl.git] / src / lisp / alloc.h
CommitLineData
eeab7066
RT
1/*
2
3 This code was written as part of the CMU Common Lisp project at
4 Carnegie Mellon University, and has been placed in the public domain.
5
6*/
62957726 7
8#ifndef _ALLOC_H_
9#define _ALLOC_H_
10
11#include "lisp.h"
12
13extern lispobj alloc_cons(lispobj car, lispobj cdr);
14extern lispobj alloc_number(long n);
d4bc586c 15extern lispobj alloc_string(const char *str);
62957726 16extern lispobj alloc_sap(void *ptr);
17
48cccfec 18#endif /* _ALLOC_H_ */