comparison: src/stdinc.h
src/stdinc.h
- changeset 79
- e4592d0292e7
- parent 75
- ba4bc497c6a7
equal
deleted
inserted
replaced
| 30 #include <stdio.h> |
30 #include <stdio.h> |
| 31 #include <string.h> |
31 #include <string.h> |
| 32 #include <stdbool.h> |
32 #include <stdbool.h> |
| 33 #include <stdlib.h> |
33 #include <stdlib.h> |
| 34 #include <dirent.h> |
34 #include <dirent.h> |
| |
35 #include <assert.h> |
| 35 #ifdef _MSC_VER |
36 #ifdef _MSC_VER |
| 36 #define strcasecmp _stricmp |
37 #define strcasecmp _stricmp |
| 37 #if __STDC_VERSION__ < 202300L |
38 #if __STDC_VERSION__ < 202300L |
| 38 #define strdup _strdup |
39 #define strdup _strdup |
| 39 #endif |
40 #endif |