#ifndef HEADER_CURL_WARNLESS_H#define HEADER_CURL_WARNLESS_H/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/unsignedshortcurlx_ultous(unsignedlongulnum);unsignedcharcurlx_ultouc(unsignedlongulnum);intcurlx_ultosi(unsignedlongulnum);intcurlx_uztosi(size_tuznum);unsignedlongcurlx_uztoul(size_tuznum);unsignedintcurlx_uztoui(size_tuznum);intcurlx_sltosi(longslnum);unsignedintcurlx_sltoui(longslnum);unsignedshortcurlx_sltous(longslnum);ssize_tcurlx_uztosz(size_tuznum);size_tcurlx_sotouz(curl_off_tsonum);intcurlx_sztosi(ssize_tsznum);size_tcurlx_sitouz(intsinum);#if defined(__INTEL_COMPILER) && defined(__unix__)intcurlx_FD_ISSET(intfd,fd_set*fdset);voidcurlx_FD_SET(intfd,fd_set*fdset);voidcurlx_FD_ZERO(fd_set*fdset);unsignedshortcurlx_htons(unsignedshortusnum);unsignedshortcurlx_ntohs(unsignedshortusnum);#ifndef BUILDING_WARNLESS_C# undef FD_ISSET# define FD_ISSET(a,b) curlx_FD_ISSET((a),(b))# undef FD_SET# define FD_SET(a,b) curlx_FD_SET((a),(b))# undef FD_ZERO# define FD_ZERO(a) curlx_FD_ZERO((a))# undef htons# define htons(a) curlx_htons((a))# undef ntohs# define ntohs(a) curlx_ntohs((a))#endif#endif /* __INTEL_COMPILER && __unix__ */#endif /* HEADER_CURL_WARNLESS_H */