driver.lisp - clic - Clic is an command line interactive client for gopher written in Common LISP
 (HTM) git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/clic/
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) README
 (DIR) LICENSE
       ---
       driver.lisp (929B)
       ---
            1 ;;;; ---------------------------------------------------------------------------
            2 ;;;; Re-export all the functionality in UIOP
            3 
            4 (uiop/package:define-package :uiop/driver
            5   (:nicknames :uiop :asdf/driver) ;; asdf/driver is obsolete (uiop isn't);
            6   ;; but asdf/driver is still used by swap-bytes, static-vectors.
            7   (:use :uiop/common-lisp)
            8    ;; NB: not reexporting uiop/common-lisp
            9    ;; which include all of CL with compatibility modifications on select platforms,
           10    ;; that could cause potential conflicts for packages that would :use (cl uiop)
           11    ;; or :use (closer-common-lisp uiop), etc.
           12   (:use-reexport
           13    :uiop/package :uiop/utility :uiop/version
           14    :uiop/os :uiop/pathname :uiop/filesystem :uiop/stream :uiop/image
           15    :uiop/launch-program :uiop/run-program
           16    :uiop/lisp-build :uiop/configuration :uiop/backward-driver))
           17 
           18 ;; Provide both lowercase and uppercase, to satisfy more people.
           19 (provide "uiop") (provide "UIOP")