diff options
Diffstat (limited to 'apps/misc.h')
-rw-r--r-- | apps/misc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/misc.h b/apps/misc.h index f31d4d363c..b0e93dfade 100644 --- a/apps/misc.h +++ b/apps/misc.h @@ -122,6 +122,9 @@ extern int show_logo(void); #define BOM_UTF_16_SIZE 2 int split_string(char *str, const char needle, char *vector[], int vector_length); +#ifndef O_PATH +#define O_PATH 0x2000 +#endif int open_pathfmt(char *buf, size_t size, int oflag, const char *pathfmt, ...); int open_utf8(const char* pathname, int flags); int string_option(const char *option, const char *const oplist[], bool ignore_case); |