#ifndef __std__H
#define __std__H

#ifdef __cplusplus
extern "C" {
#endif

#ifndef NULL
#define NULL ((void*) 0)
#endif

#define IGNORE(x) (x = x)
#define throws(x)

#ifdef __cplusplus
}
#endif

#endif
