mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
75d25d0d15
git-svn-id: https://svn.eduke32.com/eduke32@6156 1a8010ca-5511-0410-912e-c29ae57300e0
19 lines
220 B
C
19 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
|