11 lines
172 B
C
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
|