X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=libs%2Fshttpd%2Fstd_includes.h;fp=libs%2Fshttpd%2Fstd_includes.h;h=f61503ce69eeb0212fa35ec1acf752e567edad9c;hb=d8ccfe2b3944adf07d35534459cdda19d15217c8;hp=0000000000000000000000000000000000000000;hpb=21f835f30b4e092c847bf4569a00995774f7330e;p=fms.git diff --git a/libs/shttpd/std_includes.h b/libs/shttpd/std_includes.h new file mode 100644 index 0000000..f61503c --- /dev/null +++ b/libs/shttpd/std_includes.h @@ -0,0 +1,41 @@ +/* + * 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 + +#ifndef _WIN32_WCE /* 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 +#include + +#if defined(_WIN32) /* Windows specific */ +#include "compat_win32.h" +#elif defined(__rtems__) /* RTEMS specific */ +#include "compat_rtems.h" +#else /* UNIX specific */ +#include "compat_unix.h" +#endif /* _WIN32 */ + +#endif /* STD_HEADERS_INCLUDED */