neptune/kern/libkern/stdlib.h
2025-09-05 23:43:08 +02:00

11 lines
172 B
C

#ifndef STDLIB_H
#define STDLIB_H
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 1
int abs(int);
long labs(long);
long long llabs(long long);
#endif // STDLIB_H