Subversion Repositories Kolibri OS

Rev

Rev 1665 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1665 Nasarus 1
 
2
3
 
4
#define abs(i) (((i)<0)?(-(i)):(i))
5
6
 
7
8
 
9
void  free(void* pointer);
3245 Albom 10
void* realloc(void* pointer, unsigned size);
1665 Nasarus 11
12
 
13
int rand (void);
14