|
|
coherent
/*
* C general utilities library.
* labs()
* ANSI 4.10.6.3.
* Long integer absolute value.
* This does not work on the largest negative long integer.
*/
#if 0
#include <stdlib.h>
#endif
long
labs(j) register long j;
{
return (j < 0 ? -j : j);
}
/* end of labs.c */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.