git-subtree-dir: external/xbyak git-subtree-split: 9d8ff37306f39c6a71cf998078cbe880ce5dc224
14 lines
156 B
C++
14 lines
156 B
C++
#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();
|
|
}
|
|
|
|
|