stdlib.h: define EXIT_SUCCESS and EXIT_FAILURE

This commit is contained in:
Imbus 2025-09-05 23:32:03 +02:00
parent 851424f3cb
commit 291d0797e3

7
kern/libkern/stdlib.h Normal file
View file

@ -0,0 +1,7 @@
#ifndef STDLIB_H
#define STDLIB_H
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 1
#endif // STDLIB_H