/* * Copyright (c) 2004-2005 Sergey Lyubka * All rights reserved * * "THE BEER-WARE LICENSE" (Revision 42): * Sergey Lyubka wrote this file. As long as you retain this notice you * can do whatever you want with this stuff. If we meet some day, and you think * this stuff is worth it, you can buy me a beer in return. */ #ifndef STD_HEADERS_INCLUDED #define STD_HEADERS_INCLUDED #define SHTTPD_XR_OS #if !defined _WIN32_WCE && !defined SHTTPD_XR_OS /* Some ANSI #includes are not available on Windows CE */ #include #include #include #include #include #include #endif /* _WIN32_WCE */ #include #include #include #include #include #include #include #include #if defined(_WIN32) /* Windows specific */ #include "compat_win32.h" #elif defined(__rtems__) /* RTEMS specific */ #include "compat_rtems.h" #elif defined(SHTTPD_XR_OS) /* XRadio specific */ #include "compat_rtos.h" #elif defined(__UNIX__) /* UNIX specific */ #include "compat_unix.h" #endif /* _WIN32 */ #endif /* STD_HEADERS_INCLUDED */