00001
00002
00003
00004
00005
00006
00007
00008
00009
00011
00012
00023 #ifndef LT_SYSTEM_H
00024 #define LT_SYSTEM_H
00025
00026 #include "lt_platform.h"
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #include <stdio.h>
00043 #include <string.h>
00044 #include <stdlib.h>
00045 #include <math.h>
00046 #include <stddef.h>
00047 #include <ctype.h>
00048 #include <limits.h>
00049 #include <float.h>
00050
00051
00052 #if defined(LT_OS_UNIX)
00053
00054 #include <unistd.h>
00055 #include <strings.h>
00056 #include <time.h>
00057 #include <wchar.h>
00058
00059 #elif defined(LT_OS_WIN)
00060
00061 #include <time.h>
00062 #include <wchar.h>
00063
00064 #else
00065
00066 #error Port me!
00067
00068 #endif
00069
00070
00071 #endif