SBSPSS/tools/psyq/include/ABS.H
2000-08-29 16:26:01 +00:00

25 lines
398 B
C

/*
* File:abs.h
*/
/*
* $PSLibId: Run-time Library Release 4.7$
*/
#ifndef _ABS_H
#define _ABS_H
#ifndef ABS
#define ABS(x) (((x)>=0)?(x):(-(x)))
#endif /* abs */
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
extern "C" {
#endif
extern int abs(int);
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
}
#endif
#endif /* _ABS_H */