/* $Id$ */ /* ////////////////////////////////////////////////////////////////////////// // // // This code is Copyright (c) 2005 LizardTech, Inc, 1008 Western Avenue, // // Suite 200, Seattle, WA 98104. Unauthorized use or distribution // // prohibited. Access to and use of this code is permitted only under // // license from LizardTech, Inc. Portions of the code are protected by // // US and foreign patents and other filings. All Rights Reserved. // // // ////////////////////////////////////////////////////////////////////////// */ /* PUBLIC */ /** * @file lt_system.h * * @brief Declaration of standard system headers in a C-interface. * * $Date$ * $Revision$ */ #ifndef LT_SYSTEM_H #define LT_SYSTEM_H #include "lt_platform.h" /* * justifications for inclusions are that we want: * * NULL * memcpy() ... * malloc() ... * strlen() ... * isdigit() ... * printf() ... * posix */ /* common to all platforms */ #include #include #include #include #include #include #include #include #if defined(LT_OS_UNIX) #include #include #include #include #elif defined(LT_OS_WIN) #include #include #else #error Port me! #endif #endif /* LT_SYSTEM_H */