34 lines
1.0 KiB
C
34 lines
1.0 KiB
C
|
/******************************************************************************
|
||
|
*
|
||
|
* Universe fcntl header file
|
||
|
*
|
||
|
* Module %M% Version %I% Date %H%
|
||
|
*
|
||
|
* (c) Copyright 1998 Ardent Software Inc. - All Rights Reserved
|
||
|
* This is unpublished proprietary source code of Ardent Software, Inc.
|
||
|
* The copyright notice above does not evidence any actual or intented
|
||
|
* publication of such source code.
|
||
|
*
|
||
|
*******************************************************************************
|
||
|
*
|
||
|
* Maintenence log - insert most recent change descriptions at top
|
||
|
*
|
||
|
* Date.... GTAR# WHO Description.........................................
|
||
|
* 10/14/98 23801 SAP Change copyrights.
|
||
|
* 07/12/95 15927 MK Module Created
|
||
|
*
|
||
|
*******************************************************************************/
|
||
|
|
||
|
/*
|
||
|
* We include the sytem fcntl header file
|
||
|
*/
|
||
|
#include OS_FCNTL_H
|
||
|
|
||
|
/*
|
||
|
* Make sure we have O_BINARY defined for those platforms which
|
||
|
* haven't got an O_BINARY defined by this stage
|
||
|
*/
|
||
|
#ifndef O_BINARY
|
||
|
#define O_BINARY 0
|
||
|
#endif
|