diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-04-07 21:50:47 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-04-07 21:50:47 +0000 |
commit | 5a4b43848ac21b3d831f00ce11136e20f820f0a0 (patch) | |
tree | 981b8520e1f9aa683da489c8a283fb513dd26f16 /lib/select.h | |
parent | d98869a0889195a9e0d353cf691219f78186ac93 (diff) | |
download | curl-5a4b43848ac21b3d831f00ce11136e20f820f0a0.tar.gz |
First commit of David McCreedy's EBCDIC and TPF changes.
Diffstat (limited to 'lib/select.h')
-rw-r--r-- | lib/select.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/select.h b/lib/select.h index c3cb22057..f448b8460 100644 --- a/lib/select.h +++ b/lib/select.h @@ -51,5 +51,9 @@ int Curl_select(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms); int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms); +#ifdef TPF +int tpf_select_libcurl(int maxfds, fd_set* reads, fd_set* writes, + fd_set* excepts, struct timeval* tv); +#endif #endif |