mirror of
https://github.com/love2d/love-android.git
synced 2026-08-19 20:20:25 +02:00
20 lines
245 B
C
20 lines
245 B
C
/*
|
|
* mac_main.h -- redefines main entry point
|
|
*/
|
|
|
|
#ifndef _mac_main_h
|
|
#define _mac_main_h
|
|
|
|
#undef main
|
|
#define main tool_main
|
|
|
|
#endif /* _mac_main_h */
|
|
|
|
/*
|
|
* Local Variables:
|
|
* mode: c
|
|
* c-basic-offset: 8
|
|
* fill-column: 78
|
|
* End:
|
|
*/
|