diff options
author | Stef Walter <stef@memberwebs.com> | 2005-09-07 23:34:32 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2005-09-07 23:34:32 +0000 |
commit | 84c545f775eee2ca9d4ac7f0aa3ba10cf142720f (patch) | |
tree | cb84ad920f9f7865febcad328790924c94cbf601 /common/compat.h | |
parent | 41a65ce885872f04074061f00414b8d4fbab0caf (diff) |
Fix build problem when _PATH_TMP is defined
Diffstat (limited to 'common/compat.h')
-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 |