12 lines
126 B
C
12 lines
126 B
C
|
|
||
|
#ifndef _UTIL_H
|
||
|
#define _UTIL_H 1
|
||
|
|
||
|
#include "vm.h"
|
||
|
#include "glo.h"
|
||
|
|
||
|
#define ELEMENTS(a) (sizeof(a)/sizeof((a)[0]))
|
||
|
|
||
|
#endif
|
||
|
|