config root man

Current Path : /sys/boot/ficl/softwords/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //sys/boot/ficl/softwords/fileaccess.fr

\ #if FICL_WANT_FILE
\ ** 
\ ** File Access words for ficl
\ ** submitted by Larry Hastings, larry@hastings.org
\ **
\
\ $FreeBSD: release/9.1.0/sys/boot/ficl/softwords/fileaccess.fr 167850 2007-03-23 22:26:01Z jkim $

: r/o 1 ;
: r/w 3 ; 
: w/o 2 ; 
: bin 8 or ; 

: included
    r/o bin open-file 0= if
        locals| f | end-locals
        f include-file
    else
        drop
    endif
    ;

: include parse-word included ;

\ #endif

Man Man