mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
005696bc4b
svn-id: r5175
19 lines
327 B
C
19 lines
327 B
C
#include <sys/types.h>
|
|
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#ifndef RONIN_TIMER_ACCESS
|
|
#define Timer ronin_Timer
|
|
#endif
|
|
#include <ronin/ronin.h>
|
|
#ifdef Timer
|
|
#undef Timer
|
|
#endif
|
|
#ifndef REAL_MAIN
|
|
#define main scumm_main
|
|
#endif
|