home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Club Elmshorn Atari PD
/
CCE_PD.iso
/
pc
/
0400
/
CCE_0423.ZIP
/
CCE_0423.PD
/
INCLUD83.ZOO
/
file.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-07-20
|
355b
|
21 lines
#ifndef _FILE_H
#define _FILE_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __MINT__
/* lockf() comands */
#define LOCK_SH 1 /* shared lock */
#define LOCK_EX 2 /* exclusive lock */
#define LOCK_NB 4 /* non-blocking */
#define LOCK_UN 8 /* unlock */
__EXTERN int flock __PROTO((int, int));
#endif
#include <fcntl.h>
#endif /* _FILE_H */