Fix compiler warning: only use "_r" form of 'ctermid()' and 'tmpnam()' when

building a threaded Python.
This commit is contained in:
Greg Ward 2000-03-01 18:59:47 +00:00
parent c6e87a2925
commit 9217fcbb38
1 changed files with 2 additions and 2 deletions

View File

@ -649,7 +649,7 @@ posix_ctermid(self, args)
if (!PyArg_ParseTuple(args, ":ctermid"))
return NULL;
#ifdef HAVE_CTERMID_R
#if defined(HAVE_CTERMID_R) && defined(WITH_THREAD)
ret = ctermid_r(buffer);
#else
ret = ctermid(buffer);
@ -3342,7 +3342,7 @@ posix_tmpnam(self, args)
if (!PyArg_ParseTuple(args, ":tmpnam"))
return NULL;
#ifdef HAVE_TMPNAM_R
#if defined(HAVE_TMPNAM_R) && defined(WITH_THREAD)
name = tmpnam_r(buffer);
#else
name = tmpnam(buffer);