mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
gnuisms
This commit is contained in:
parent
5551e51d2b
commit
05f50fe6bf
1 changed files with 10 additions and 1 deletions
|
@ -17,9 +17,18 @@
|
|||
* TODO: graceful shutdown.
|
||||
*/
|
||||
|
||||
#define _GNU_SOURCE 1 /* for O_DIRECTORY */
|
||||
#define _GNU_SOURCE 1 /* for O_DIRECTORY on Linux */
|
||||
#include "a.h"
|
||||
|
||||
/* GNUisms */
|
||||
#ifndef O_DIRECTORY
|
||||
#define O_DIRECTORY 0
|
||||
#endif
|
||||
#ifndef O_LARGEFILE
|
||||
#define O_LARGEFILE 0
|
||||
#endif
|
||||
|
||||
|
||||
int debug;
|
||||
char *argv0;
|
||||
void fusedispatch(void*);
|
||||
|
|
Loading…
Reference in a new issue