basekernel/include/library/stdlib.h

10 lines
149 B
C
Raw Normal View History

2024-10-17 23:43:09 +02:00
#ifndef LIBRARY_STDLIB_H
#define LIBRARY_STDLIB_H
void exit( int code );
2025-01-22 23:36:27 +01:00
#ifdef LIBRARY_STDLIB_EXT
#include "library_stdlib_ext.h"
#endif
2024-10-17 23:43:09 +02:00
#endif