
(define-module (guile)
  ;; Note that this is also done for module `(guile-user)'; there is
  ;; currently no way to construct an "exporting autoload".
  :autoload (modules rgx) (regcomp
                           regexec compiled-regexp?
                           regexp->dfa dfa-fork reset-dfa!
                           dfa-final-tag dfa-continuable? advance-dfa!))

(define-module (guile)
  :autoload (ice-9 rdelim) (read-line
                            read-line!
                            read-delimited
                            read-delimited!
                            write-line))

(append! %load-path (list "."))

;;; boot-9.scm ends here
