mirror of
https://github.com/encounter/newlib.git
synced 2026-03-30 11:31:09 -07:00
18 lines
232 B
C
18 lines
232 B
C
#include <machine/syscall.h>
|
|
#include <unistd.h>
|
|
#include <time.h>
|
|
|
|
/* Get configurable system variables. */
|
|
|
|
long
|
|
_sysconf(int name)
|
|
{
|
|
switch (name)
|
|
{
|
|
case _SC_CLK_TCK:
|
|
return CLOCKS_PER_SEC;
|
|
}
|
|
|
|
return -1;
|
|
}
|