f9031810488241b5d74a1b28a96b3b8ff4a0c08b
[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 flagor(void * ptr, int ormask);
14 void flagand(void * ptr, int andmask);
15
16 #endif