home *** CD-ROM | disk | FTP | other *** search
- /*-----------------------------------------------------------------------*
- * filename - files2.c
- *
- * function(s)
- * none
- *----------------------------------------------------------------------*/
-
- /*[]------------------------------------------------------------[]*/
- /*| |*/
- /*| Turbo C Run Time Library - Version 3.0 |*/
- /*| |*/
- /*| |*/
- /*| Copyright (c) 1987,1988,1990 by Borland International |*/
- /*| All Rights Reserved. |*/
- /*| |*/
- /*[]------------------------------------------------------------[]*/
-
- #include <io.h>
- #include <fcntl.h>
-
- /*---------------------------------------------------------------------*
-
- Name _openfd
-
- Usage unsigned int _openfd[];
-
- Prototype in not prototyped.
-
- Description array of access modes for file/devices
-
- *---------------------------------------------------------------------*/
- unsigned int _openfd[] =
- {
- O_RDONLY | O_DEVICE,
- O_WRONLY | O_DEVICE,
- O_WRONLY | O_DEVICE,
- O_RDWR | O_DEVICE | O_BINARY,
- O_WRONLY | O_DEVICE | O_BINARY,
-
- ~0, ~0, ~0,
- ~0, ~0, ~0, ~0,
- ~0, ~0, ~0, ~0,
- ~0, ~0, ~0, ~0
- };
-