From 41fe611ddab7057c64d45c878d8c9f18b85c2393 Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Wed, 16 Nov 2011 17:29:46 -0800 Subject: [PATCH] random.unix: roll back type assertions Probably don't really make much difference and are invalid in apps that deploy with io level 2 or lower. --- basis/random/unix/unix.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/random/unix/unix.factor b/basis/random/unix/unix.factor index d52458372e..ffddde9f5b 100644 --- a/basis/random/unix/unix.factor +++ b/basis/random/unix/unix.factor @@ -2,10 +2,10 @@ ! See http://factorcode.org/license.txt for BSD license. USING: alien.c-types io io.files kernel namespaces random io.encodings.binary init accessors system destructors -io.ports hints math ; +hints math ; IN: random.unix -TUPLE: unix-random { reader input-port } ; +TUPLE: unix-random reader ; : ( path -- random ) binary unix-random boa ;