diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/compat.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/common/compat.h b/common/compat.h index addf815..746cd4f 100644 --- a/common/compat.h +++ b/common/compat.h @@ -121,8 +121,13 @@ void vwarnx(const char *fmt, va_list ap); #ifdef HAVE_PATHS_H #include <paths.h> -#else +#endif + +#ifndef _PATH_DEVNULL #define _PATH_DEVNULL "/dev/null" +#endif + +#ifndef _PATH_TMP #define _PATH_TMP "/tmp" #endif |