#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unxprm.scm,v 1.5 1989/10/26 06:47:23 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unxprm.scm,v 1.6 1989/12/08 01:52:05 cph Exp $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
((ucode-primitive file-attributes)
(pathname->string (pathname->absolute-pathname (->pathname filename)))))
+(define (file-attributes-indirect filename)
+ ((ucode-primitive file-attributes-indirect)
+ (pathname->string (pathname->absolute-pathname (->pathname filename)))))
+
(define-structure (file-attributes
(type vector)
(constructor false)
(inode-number false read-only true))
(define (file-modification-time filename)
- (let ((attributes (file-attributes filename)))
+ (let ((attributes (file-attributes-indirect filename)))
(and attributes
(file-attributes/modification-time attributes))))
\f
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.68 1989/12/07 05:36:28 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.69 1989/12/08 01:52:17 cph Exp $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
'()))
(add-system! microcode-system)
(add-event-receiver! event:after-restore snarf-microcode-version!)
- (add-identification! "Runtime" 14 68))
+ (add-identification! "Runtime" 14 69))
(define microcode-system)