1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-10-12 19:04:54 +03:00

2004-11-03 Marcus Brinkmann <marcus@gnu.org>

* sysdeps/generic/tempname.c (__path_search): Add missing argument
	TRY_TMPDIR.
This commit is contained in:
Roland McGrath
2004-11-03 01:51:44 +00:00
parent b1845d07a1
commit a237785d08

View File

@@ -25,11 +25,12 @@
template suitable for use in __gen_tempname into TMPL, bounded
by TMPL_LEN. */
int
__path_search (tmpl, tmpl_len, dir, pfx)
__path_search (tmpl, tmpl_len, dir, pfx, try_tmpdir)
char *tmpl;
size_t tmpl_len;
const char *dir;
const char *pfx;
int try_tmpdir;
{
__set_errno (ENOSYS);
return -1;