diff options
author | Fred Drake <fdrake@acm.org> | 1999-12-09 22:03:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-12-09 22:03:25 (GMT) |
commit | 89143df520f83ccf3083d507e92d64ab24d647d3 (patch) | |
tree | 7eaed70546cdd73023fd2c884040005bd5fe8454 /config.h.in | |
parent | 5ab8eaf0bb97055aa41f96cd577f3e8e67c9c8bc (diff) | |
download | cpython-89143df520f83ccf3083d507e92d64ab24d647d3.zip cpython-89143df520f83ccf3083d507e92d64ab24d647d3.tar.gz cpython-89143df520f83ccf3083d507e92d64ab24d647d3.tar.bz2 |
Added support for ctermid, tempnam, tmpfile, tmpnam, and tmpnam_r.
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index d1e0c8f..919d7fb 100644 --- a/config.h.in +++ b/config.h.in @@ -215,6 +215,12 @@ /* Define if you have the clock function. */ #undef HAVE_CLOCK +/* Define if you have the ctermid function. */ +#undef HAVE_CTERMID + +/* Define if you have the ctermid_r function. */ +#undef HAVE_CTERMID_R + /* Define if you have the dlopen function. */ #undef HAVE_DLOPEN @@ -374,12 +380,24 @@ /* Define if you have the tcsetpgrp function. */ #undef HAVE_TCSETPGRP +/* Define if you have the tempnam function. */ +#undef HAVE_TEMPNAM + /* Define if you have the timegm function. */ #undef HAVE_TIMEGM /* Define if you have the times function. */ #undef HAVE_TIMES +/* Define if you have the tmpfile function. */ +#undef HAVE_TMPFILE + +/* Define if you have the tmpnam function. */ +#undef HAVE_TMPNAM + +/* Define if you have the tmpnam_r function. */ +#undef HAVE_TMPNAM_R + /* Define if you have the truncate function. */ #undef HAVE_TRUNCATE |