Skip to content
Snippets Groups Projects
Commit 729eb48e authored by deuce's avatar deuce
Browse files

Linting

parent 0fc4f20d
No related branches found
No related tags found
No related merge requests found
......@@ -80,17 +80,17 @@
#undef O_DENYNONE
#define O_DENYNONE (1<<31) /* req'd for Baja/nopen compatibility */
#define SH_DENYNO 2 // no locks
#define SH_DENYNO 2 /* no locks */
#ifdef F_SANEWRLCKNO
#define SH_DENYRW F_SANEWRLCKNO // exclusive lock
#define SH_DENYRW F_SANEWRLCKNO /* exclusive lock */
#else
#define SH_DENYRW F_WRLCK // exclusive lock
#define SH_DENYRW F_WRLCK /* exclusive lock */
#endif
#ifdef F_SANERDLCKNO
#define SH_DENYWR F_SANERDLCKNO // shareable lock
#define SH_DENYWR F_SANERDLCKNO /* shareable lock */
#else
#define SH_DENYWR F_RDLCK // shareable lock
#define SH_DENYWR F_RDLCK /* shareable lock */
#endif
#endif
#define chsize(fd,size) ftruncate(fd,size)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment