diff options
author | Sam James <sam@cmpct.info> | 2022-11-05 08:30:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-05 08:30:31 (GMT) |
commit | 12078e78f6e4a21f344e4eaff529e1ff3b97734f (patch) | |
tree | 088900dd5db0a57923cad0e78f540f50aeb5937b /configure.ac | |
parent | d04899abb0da4cc7c0a390f5bc52d57ace8955fd (diff) | |
download | cpython-12078e78f6e4a21f344e4eaff529e1ff3b97734f.zip cpython-12078e78f6e4a21f344e4eaff529e1ff3b97734f.tar.gz cpython-12078e78f6e4a21f344e4eaff529e1ff3b97734f.tar.bz2 |
gh-99086: Fix implicit int compiler warning in configure check for PTHREAD_SCOPE_SYSTEM (#99085)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 0ca5e3f..aebe240 100644 --- a/configure.ac +++ b/configure.ac @@ -4361,7 +4361,7 @@ if test "$posix_threads" = "yes"; then void *foo(void *parm) { return NULL; } - main() { + int main() { pthread_attr_t attr; pthread_t id; if (pthread_attr_init(&attr)) return (-1); |