basekernel/include/library/stdlib.h

10 lines
149 B
C

#ifndef LIBRARY_STDLIB_H
#define LIBRARY_STDLIB_H
void exit( int code );
#ifdef LIBRARY_STDLIB_EXT
#include "library_stdlib_ext.h"
#endif
#endif