Merge pull request #1785 from rextimmy/mac_port_clean

MacOS platform support
This commit is contained in:
Areloch 2016-10-12 16:54:24 -05:00 committed by GitHub
commit 1131ed15df
92 changed files with 1374 additions and 4936 deletions

View file

@ -60,6 +60,7 @@
** this software for any purpose.
*/
#include "platform/platform.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
@ -68,7 +69,11 @@
#include "core/util/md5.h"
#if defined (TORQUE_OS_MAC) && defined(TORQUE_CPU_X64)
typedef unsigned int unsigned32;
#else
typedef unsigned long unsigned32;
#endif
typedef unsigned short unsigned16;
typedef unsigned char unsigned8;