|
|
GNU tools for NeXTSTEP 3.3
#include "stuff/round.h"
/*
* round() rounds v to a multiple of r.
*/
long
round(
long v,
unsigned long r)
{
r--;
v += r;
v &= ~(long)r;
return(v);
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.