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 | 1cf04e798f266315dbe53473886eb8ada27c23db (patch) | |
tree | 540ef3493925fca851339a78d267ca741566590f /common/compat.h | |
parent | d275e658878f9ad2814792ccebb18448de673ca6 (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 |