2007-10-25 16:27:34 -04:00
|
|
|
;;; Ikarus Scheme -- A compiler for R6RS Scheme.
|
2008-01-29 00:34:34 -05:00
|
|
|
;;; Copyright (C) 2006,2007,2008 Abdulaziz Ghuloum
|
2007-10-25 16:27:34 -04:00
|
|
|
;;;
|
|
|
|
;;; This program is free software: you can redistribute it and/or modify
|
|
|
|
;;; it under the terms of the GNU General Public License version 3 as
|
|
|
|
;;; published by the Free Software Foundation.
|
|
|
|
;;;
|
|
|
|
;;; This program is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
;;; General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2007-05-05 22:54:53 -04:00
|
|
|
|
2009-05-10 18:35:38 -04:00
|
|
|
(library (ikarus.singular-objects)
|
2007-09-15 02:06:16 -04:00
|
|
|
(export base-rtd eof-object void fixnum-width least-fixnum
|
|
|
|
greatest-fixnum)
|
2007-05-05 22:54:53 -04:00
|
|
|
(import
|
2007-10-12 02:59:27 -04:00
|
|
|
(rename (ikarus system $structs) (base-rtd sys:base-rtd))
|
2007-05-06 20:23:45 -04:00
|
|
|
(rename (ikarus)
|
|
|
|
(void sys:void)
|
2007-09-15 02:06:16 -04:00
|
|
|
(fixnum-width sys:fixnum-width)
|
|
|
|
(least-fixnum sys:least-fixnum)
|
|
|
|
(greatest-fixnum sys:greatest-fixnum)
|
2007-05-06 20:23:45 -04:00
|
|
|
(eof-object sys:eof-object)))
|
2007-05-05 23:00:39 -04:00
|
|
|
|
2007-05-06 20:23:45 -04:00
|
|
|
(define (void) (sys:void))
|
2007-09-15 02:06:16 -04:00
|
|
|
(define (fixnum-width) (sys:fixnum-width))
|
|
|
|
(define (least-fixnum) (sys:least-fixnum))
|
|
|
|
(define (greatest-fixnum) (sys:greatest-fixnum))
|
2007-05-05 23:00:39 -04:00
|
|
|
(define (eof-object) (sys:eof-object))
|
2007-05-05 22:54:53 -04:00
|
|
|
(define (base-rtd) (sys:base-rtd)))
|
|
|
|
|