Fixed several typos in the inline forms for OUTPUT-STREAM-P

This commit is contained in:
Juan Jose Garcia Ripoll 2008-12-07 21:47:09 +01:00
parent 21cd803aef
commit 6aa5c0572d

View file

@ -363,8 +363,8 @@
(proclaim-function input-stream-p (stream) t :predicate t)
(def-inline input-stream-p :always (stream) :bool "ecl_input_stream_p(#0)")
(proclaim-function output-stream-p (t) t :predicate t)
(def-inline input-stream-p :always (stream) :bool "ecl_output_stream_p(#0)")
(proclaim-function output-stream-p (stream) t :predicate t)
(def-inline output-stream-p :always (stream) :bool "ecl_output_stream_p(#0)")
(proclaim-function stream-element-type (t) t)
(proclaim-function close (stream *) t)