#ifndef __STDLIB_H_
#define __STDLIB_H_

#include <mem.h>

#define SEEK_SET 0
#define SEEK_CUR 1
#define SEEK_END 2

int atoi (const char * str);
//int random (int n);
int random();

#endif