2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00

Add _PATH_TMP, _PATH_VARTMP and _PATH_USRTMP

This commit is contained in:
Todd C. Miller 2004-01-21 21:58:24 +00:00
parent f4a4d4c666
commit cc7cfa707e

View File

@ -113,3 +113,15 @@
#ifndef _PATH_BSHELL #ifndef _PATH_BSHELL
#undef _PATH_BSHELL #undef _PATH_BSHELL
#endif /* _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 */