0.8alpha.0.27:
[sbcl.git] / contrib / sb-simple-streams / iodefs.lisp
1 ;;; -*- lisp -*-
2
3 ;;; This code is in the public domain.
4
5 ;;; The cmucl implementation of simple-streams was done by Paul Foley,
6 ;;; who placed the code in the public domain.  Sbcl port by Rudi
7 ;;; Schlatte.
8
9 ;;; This is just for compatibility with Franz demo code
10 (defpackage "EXCL"
11   (:use "SB-SIMPLE-STREAM")
12   (:import-from "SB-SIMPLE-STREAM"
13         "BUFFER" "BUFFPOS" "BUFFER-PTR"
14         "OUT-BUFFER" "MAX-OUT-POS"
15         "INPUT-HANDLE" "OUTPUT-HANDLE"
16         "MELDED-STREAM"
17         "J-READ-CHARS"))
18
19 (use-package "SB-SIMPLE-STREAMS")
20
21 (provide :iodefs)
22