/* Copyright (c) 1993 Xerox Corporation. All rights reserved. */ /* $Id$ $Date$ */ #ifndef __PCR_fcntl_h #define __PCR_fcntl_h 1 #include extern int PCR_open(char *path, int flags, mode_t mode); extern int PCR_creat(char *path, mode_t mode); extern int PCR_fcntl(int fd, int cmd, ...); #ifndef PCR_NO_RENAME # undef open # undef creat # undef fcntl # define open PCR_open # define creat PCR_creat # define fcntl PCR_fcntl #endif /* !PCR_NO_RENAME */ #endif /* !__PCR_fcntl_h */ /* $Log$ */