From cc7cfa707e69a0b71f9e8b9ca4ebf56abda75c25 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Wed, 21 Jan 2004 21:58:24 +0000 Subject: [PATCH] Add _PATH_TMP, _PATH_VARTMP and _PATH_USRTMP --- pathnames.h.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pathnames.h.in b/pathnames.h.in index b00b513bd..efbbae82f 100644 --- a/pathnames.h.in +++ b/pathnames.h.in @@ -113,3 +113,15 @@ #ifndef _PATH_BSHELL #undef _PATH_BSHELL #endif /* _PATH_BSHELL */ + +#ifndef _PATH_TMP +#define _PATH_TMP "/tmp/" +#endif /* _PATH_TMP */ + +#ifndef _PATH_VARTMP +#define _PATH_VARTMP "/var/tmp/" +#endif /* _PATH_VARTMP */ + +#ifndef _PATH_USRTMP +#define _PATH_USRTMP "/usr/tmp/" +#endif /* _PATH_USRTMP */ -- 2.50.1