gh-127614: Correctly check for ttyname_r() in configure (#128503)

PR #14868 replaced the ttyname() call with ttyname_r(), but the old
check remained.
This commit is contained in:
Erlend E. Aasland 2025-01-07 22:42:36 +01:00 committed by GitHub
parent 07e6aa2efc
commit e08b28235a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 10 deletions

View file

@ -3347,7 +3347,7 @@ os_access_impl(PyObject *module, path_t *path, int mode, int dir_fd,
#endif
#ifdef HAVE_TTYNAME
#ifdef HAVE_TTYNAME_R
/*[clinic input]
os.ttyname