c.rkt
#lang racket/base
(require (file "c/types.rkt")
         ; XXX doc these
         (file "c/constants.rkt")
         (file "c/include/cl.rkt")
         (file "c/4.rkt")
         (file "c/5.rkt"))
(provide
 (all-from-out
  (file "c/types.rkt")
  (file "c/constants.rkt")
  (file "c/include/cl.rkt")
  (file "c/4.rkt")
  (file "c/5.rkt")))