#ifndef _STDLIB_H_ #define _STDLIB_H_ #include void srand(unsigned int seed); int rand(void); void exit(int status); #endif