]> gitweb.factorcode.org Git - factor.git/commitdiff
unix.utilities: update usings for move
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 19 Jan 2022 16:39:11 +0000 (08:39 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 19 Jan 2022 16:39:11 +0000 (08:39 -0800)
basis/environment/unix/unix.factor
basis/unix/ffi/ffi-tests.factor
basis/unix/groups/groups.factor
basis/unix/process/process.factor

index a68e0013ee5d590e4f29b53c32e4b9b70decf74b..2309fba1a20d381dabc5a46a5242c12dc38ad9db 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2008 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: alien.accessors alien.c-types alien.data alien.strings
-alien.syntax environment io.encodings.utf8 kernel libc system unix.ffi
-unix.utilities vocabs ;
+alien.syntax alien.utilities environment io.encodings.utf8
+kernel libc system unix.ffi vocabs ;
 IN: environment.unix
 
 HOOK: environ os ( -- void* )
index a529ef514fe0e6f4388d6f610c8287f611f6ef04..880742ed9e2a1d2f4fae5b893149e0230b7f07f0 100644 (file)
@@ -1,6 +1,5 @@
-USING: accessors alien.c-types io.encodings.utf8 kernel
-sequences tools.test unix.ffi unix.utilities ;
-IN: unix.ffi.tests
+USING: accessors alien.c-types alien.utilities io.encodings.utf8
+kernel sequences tools.test unix.ffi ;
 
 { 80 } [ "http" f getservbyname port>> ntohs ] unit-test
 
index 45e24a4ced19f9b4fa53244f8351ac754fb6dd13..9eb9d947127df045a152f5bf31651de2d17d1450 100644 (file)
@@ -1,9 +1,11 @@
 ! Copyright (C) 2008 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors alien.c-types alien.data assocs byte-arrays
-classes.struct combinators continuations grouping
+
+USING: accessors alien.c-types alien.data alien.utilities assocs
+byte-arrays classes.struct combinators continuations grouping
 io.encodings.utf8 kernel math math.parser namespaces sequences
-strings unix unix.ffi unix.users unix.utilities ;
+strings unix unix.ffi unix.users ;
+
 IN: unix.groups
 
 TUPLE: group id name passwd members ;
index 417a15b6f86dc7226f574b956d75713504496933..28ce4b9a9842decc66ea26be82e3a1b604adeacb 100644 (file)
@@ -1,7 +1,7 @@
-USING: alien.c-types alien.data alien.syntax classes.struct
-environment.unix generalizations io.encodings.utf8 kernel libc
-math sequences simple-tokenizer strings unix unix.types
-unix.utilities ;
+USING: alien.c-types alien.data alien.syntax alien.utilities
+classes.struct environment.unix generalizations
+io.encodings.utf8 kernel libc math sequences simple-tokenizer
+strings unix unix.types ;
 QUALIFIED-WITH: alien.c-types ac
 IN: unix.process