mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
14 lines
149 B
C
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
|