Remove some test noise. A drop in the ocean unfortunately.
[sbcl.git] / src / code / target-allocate.lisp
blobba1d1f0f757d3062e45e48b18f880d9e28ea9e2b
1 ;;;; system memory allocation
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
12 (in-package "SB!KERNEL")
14 (define-alien-routine ("os_allocate" allocate-system-memory)
15 system-area-pointer
16 (bytes unsigned))
18 (define-alien-routine ("os_deallocate" deallocate-system-memory)
19 void
20 (addr system-area-pointer)
21 (bytes unsigned))