mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
09c656ca68
Obtained from: netlib.att.com
13 lines
199 B
C
13 lines
199 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
shortint h_sign(a,b) shortint *a, *b;
|
|
#else
|
|
shortint h_sign(shortint *a, shortint *b)
|
|
#endif
|
|
{
|
|
shortint x;
|
|
x = (*a >= 0 ? *a : - *a);
|
|
return( *b >= 0 ? x : -x);
|
|
}
|