diff options
Diffstat (limited to '4init/config.h')
| -rw-r--r-- | 4init/config.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/4init/config.h b/4init/config.h new file mode 100644 index 0000000..6c36ccf --- /dev/null +++ b/4init/config.h @@ -0,0 +1,17 @@ +#ifndef CONFIG_H +#define CONFIG_H + +static const char *rc_path = "/usr/bin/4rc"; + +static char *const rc_argv[] = { + "4rc", + NULL +}; + +static char *const rc_envp[] = { + "PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/sbin", + "TERM=linux", + NULL +}; + +#endif // CONFIG_H |
