#ifndef NVIM_OS_UNIX_DEFS_H #define NVIM_OS_UNIX_DEFS_H #include #include // Defines BSD, if it's a BSD system. #ifdef HAVE_SYS_PARAM_H # include #endif #define TEMP_DIR_NAMES {"$TMPDIR", "/tmp", ".", "~"} #define TEMP_FILE_PATH_MAXLEN 256 #define HAVE_ACL (HAVE_POSIX_ACL || HAVE_SOLARIS_ACL) // Special wildcards that need to be handled by the shell. #define SPECIAL_WILDCHAR "`'{" #endif // NVIM_OS_UNIX_DEFS_H