]> icculus.org git repositories - taylor/freespace2.git/blob - include/platform.h
platform and pstypes cleanup:
[taylor/freespace2.git] / include / platform.h
1 #ifndef PLATFORM_H
2 #define PLATFORM_H
3
4
5 #include <stdio.h>      // For NULL, etc
6 #include <stdlib.h>
7 #include <memory.h>
8
9 #ifndef __APPLE__
10 #include <malloc.h>
11 #endif
12
13 #include <string.h>
14
15 #ifdef PLAT_UNIX
16 #include "unix.h"
17 #else
18 #include "win.h"
19 #endif
20
21
22 void base_filename(const char *path, char *filename, const int max_fname);
23
24
25 #endif // PLATFORM_H