mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 12:18:26 -05:00
14 lines
156 B
C++
Executable File
14 lines
156 B
C++
Executable File
#include "lib.h"
|
|
|
|
void init()
|
|
{
|
|
static bool init = true;
|
|
printf("in lib_test %d\n", init);
|
|
if (!init) return;
|
|
init = false;
|
|
X::a.put();
|
|
putReg();
|
|
}
|
|
|
|
|