mirror of
git://git.musl-libc.org/musl
synced 2024-12-17 20:24:54 +00:00
671ffab776
there is no reason to avoid multiple identical macro definitions; this is perfectly legal C, and even with the maximal warning options enabled, gcc does not issue any warning for it.
22 lines
261 B
C
22 lines
261 B
C
#ifndef _SYS_FILE_H
|
|
#define _SYS_FILE_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define LOCK_SH 1
|
|
#define LOCK_EX 2
|
|
#define LOCK_NB 4
|
|
#define LOCK_UN 8
|
|
|
|
#define L_SET 0
|
|
#define L_INCR 1
|
|
#define L_XTND 2
|
|
|
|
int flock(int, int);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|