diff options
author | Guido van Rossum <guido@python.org> | 1997-08-22 20:42:00 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-22 20:42:00 +0000 |
commit | 1171ee6aaf55fbb7f314a36798c0835ea0900ce9 (patch) | |
tree | f23fc098fe4868bcd329139364f8b229add8d99b /config.h.in | |
parent | 5de31fc09411a6640961e77968782147b2db8a10 (diff) | |
download | cpython-git-1171ee6aaf55fbb7f314a36798c0835ea0900ce9.tar.gz |
Added configuration tests for presence of alarm(), pause(), and getpwent()
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 30512ac390..15c060b5c6 100644 --- a/config.h.in +++ b/config.h.in @@ -151,6 +151,9 @@ /* The number of bytes in a long. */ #undef SIZEOF_LONG +/* Define if you have the alarm function. */ +#undef HAVE_ALARM + /* Define if you have the chown function. */ #undef HAVE_CHOWN @@ -193,6 +196,9 @@ /* Define if you have the getpid function. */ #undef HAVE_GETPID +/* Define if you have the getpwent function. */ +#undef HAVE_GETPWENT + /* Define if you have the gettimeofday function. */ #undef HAVE_GETTIMEOFDAY @@ -220,6 +226,9 @@ /* Define if you have the nice function. */ #undef HAVE_NICE +/* Define if you have the pause function. */ +#undef HAVE_PAUSE + /* Define if you have the plock function. */ #undef HAVE_PLOCK |