0.6.11.36:
[sbcl.git] / src / code / globals.lisp
1 ;;;; This file contains special proclamations for variables that are
2 ;;;; referenced in the code sources before they are defined. There are
3 ;;;; also function proclamations to make some common functions be
4 ;;;; known, avoiding work in recording the calls that are done before
5 ;;;; the definition.
6
7 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; more information.
9 ;;;;
10 ;;;; This software is derived from the CMU CL system, which was
11 ;;;; written at Carnegie Mellon University and released into the
12 ;;;; public domain. The software is in the public domain and is
13 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
14 ;;;; files for more information.
15
16 (in-package "SB!IMPL")
17
18 (declaim (special *keyword-package* *cl-package*
19                   original-lisp-environment
20                   *standard-readtable*
21                   sb!debug:*in-the-debugger*
22                   sb!debug:*stack-top-hint*
23                   *handler-clusters*
24                   *restart-clusters*
25                   *gc-inhibit* *need-to-collect-garbage*
26                   *software-interrupt-vector* *load-verbose*
27                   *load-print-stuff* *in-compilation-unit*
28                   *aborted-compilation-unit-count* *char-name-alist*
29                   *gc-notify-before* *gc-notify-after*
30                   *posix-argv*))
31
32 (declaim (ftype (function * *)
33                 find-keyword keyword-test assert-error
34                 assert-prompt check-type-error case-body-error print-object
35                 describe-object sb!pcl::check-wrapper-validity))
36
37 ;;; Gray streams functions not defined until after PCL is loaded.
38 (declaim (ftype (function * *)
39                 stream-advance-to-column stream-clear-input
40                 stream-clear-output stream-finish-output stream-force-output
41                 stream-fresh-line stream-line-column stream-line-length
42                 stream-listen stream-peek-char stream-read-byte
43                 stream-read-char stream-read-char-no-hang stream-read-line
44                 stream-start-line-p stream-terpri stream-unread-char
45                 stream-write-byte stream-write-char stream-write-string))