1#ifndef NVIM_OS_UNIX_DEFS_H
2#define NVIM_OS_UNIX_DEFS_H
3
4#include <unistd.h>
5#include <sys/param.h>
6
7// POSIX.1-2008 says that NAME_MAX should be in here
8#include <limits.h>
9
10#define TEMP_DIR_NAMES { "$TMPDIR", "/tmp", ".", "~" }
11#define TEMP_FILE_PATH_MAXLEN 256
12
13#define HAVE_ACL (HAVE_POSIX_ACL || HAVE_SOLARIS_ACL)
14
15// Special wildcards that need to be handled by the shell.
16#define SPECIAL_WILDCHAR "`'{"
17
18// Character that separates entries in $PATH.
19#define ENV_SEPCHAR ':'
20#define ENV_SEPSTR ":"
21
22#endif // NVIM_OS_UNIX_DEFS_H
23