


## winix-types.pkg
# Compiled by:
# src/lib/std/src/standard-core.sublib# The Winix package (s) with only types, so that the APIs can compile.
package winix_types {
#
System_Error = Int; # The integer code; we may need to beef this up
#
package process {
#
Status = Int; # Should this be one_byte_unt::Unt ?
};
package io {
#
Io_Descriptor = Int;
fun iod_to_fd iod = iod;
fun int_to_iod iod = iod;
};
};
package pre_os
=
winix_types;
## COPYRIGHT (c) 1995 AT&T Bell Laboratories.
## Subsequent changes by Jeff Prothero Copyright (c) 2010-2012,
## released under Gnu Public Licence version 3.


