orca/cstdlib/include/stdlib.h

17 lines
159 B
C

#ifndef _STDLIB_H
#define _STDLIB_H
#ifdef __cplusplus
extern "C" {
#endif
_Noreturn void abort (void);
int abs (int);
#ifdef __cplusplus
}
#endif
#endif