Remove loader.4th.8 and references to it.
[dragonfly.git] / sys / boot / ficl / softwords / fileaccess.fr
1 \ #if FICL_WANT_FILE
2 \ ** 
3 \ ** File Access words for ficl
4 \ ** submitted by Larry Hastings, larry@hastings.org
5 \ **
6 \
7 \ $FreeBSD: src/sys/boot/ficl/softwords/fileaccess.fr,v 1.2 2007/03/23 22:26:01 jkim Exp $
8 \ $DragonFly: src/sys/boot/ficl/softwords/fileaccess.fr,v 1.2 2008/03/29 23:31:07 swildner Exp $
9
10 : r/o 1 ;
11 : r/w 3 ; 
12 : w/o 2 ; 
13 : bin 8 or ; 
14
15 : included
16     r/o bin open-file 0= if
17         locals| f | end-locals
18         f include-file
19     else
20         drop
21     endif
22     ;
23
24 : include parse-word included ;
25
26 \ #endif