prepare changelog for v0.5
[nit.git] / c_src / math._nitni.h
index 4f0d19a..62f1fa1 100644 (file)
@@ -5,12 +5,14 @@
 
 #ifndef OBJECT_TYPE
 #define OBJECT_TYPE
-typedef struct s_Object{
-       val_t v;
-} Object;
+struct s_Object{
+               struct nitni_ref ref; /* real ref struct, must be first */
+};
+typedef struct s_Object *Object;
+#define Object_incr_ref( x ) nitni_global_ref_incr( (struct nitni_ref*)(x) )
+#define Object_decr_ref( x ) nitni_global_ref_decr( (struct nitni_ref*)(x) )
 #endif
-
-#include ".././../lib/standard//math_nit.h"
+#include "math_nit.h"
 
 /* out/indirect function for math::Int::rand */
 val_t Int_rand___out( val_t recv );