changes
[IRC.git] / Robust / src / Runtime / runtime.h
1 #ifndef RUNTIME
2 #define RUNTIME
3 #include<stdlib.h>
4 #include<stdio.h>
5
6
7 void * allocate_new(int type);
8 struct ArrayObject * allocate_newarray(int type, int length);
9 struct ___String___ * NewString(char *str,int length);
10
11 void failedboundschk();
12 void failednullptr();
13 void flagorand(void * ptr, int ormask, int andmask);
14
15
16 #endif