mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
20 lines
220 B
C
20 lines
220 B
C
|
|
||
|
#ifndef elauxlib_h_
|
||
|
#define elauxlib_h_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#ifdef USE_LUAJIT_2_1
|
||
|
# include <luajit-2.1/lauxlib.h>
|
||
|
#else
|
||
|
# include <luajit-2.0/lauxlib.h>
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|