POSIX bug

Will Noble <[email protected]> Sat, 22 Jan 2011 22:18:29 -0800
Newsgroups gmane.lisp.scheme.scheme48
Message-ID <[email protected]>
Best summed up by a transcript:

> ,open posix-files
> (get-file-info "/")

assertion-violation: unbound external name [call-external-value-2]
                     "posix_file_info"
                     "posix-time-type"

The problem is that posix_file_info in c/posix/dir.c indirectly uses
the binding to posix-time-type through s48_posix_enter_time. However,
posix-files doesn't open posix-time, leaving posix-time-type unexported.

Regards,
Will