Skip to content
Snippets Groups Projects
Commit 91537896 authored by wlott's avatar wlott
Browse files

Added interpreter stubs for numerator and denominator.

parent 92e8687d
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/numbers.lisp,v 1.13 1990/10/01 15:02:58 ram Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/numbers.lisp,v 1.14 1990/10/03 09:58:11 wlott Exp $
;;; ;;;
;;; This file contains the definitions of most number functions. ;;; This file contains the definitions of most number functions.
;;; ;;;
...@@ -270,6 +270,18 @@ ...@@ -270,6 +270,18 @@
(if (plusp number) 1 -1) (if (plusp number) 1 -1)
(/ number (abs number))))) (/ number (abs number)))))
;;;; Ratios.
(defun numerator (number)
"Return the numerator of NUMBER, which must be rational."
(numerator number))
(defun denominator (number)
"Return the denominator of NUMBER, which must be rational."
(denominator number))
;;;; Arithmetic Operations ;;;; Arithmetic Operations
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment