Files
2023-06-25 16:52:48 -04:00

14 lines
149 B
C

#ifndef MSL_ARITH_H
#define MSL_ARITH_H
#include <types.h>
#ifdef __cplusplus
extern "C" {
#endif
int abs(int);
#ifdef __cplusplus
}
#endif
#endif