2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 /* Some POSIX includes */
15 * Some wrapper functions for the unix functions.
16 * Some of the constants have to be brought in here
17 * because they clash with AROS constants otherwise.
20 int unix_open_nonblock(const char * pathname
)
22 return open(pathname
, O_NONBLOCK
|O_RDWR
);