summaryrefslogtreecommitdiff
path: root/libraries/base/cbits/sysconf.c
blob: 1bce685296bbda0c25f6057b81179ec62e3cc234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "HsBaseConfig.h"

/* For _SC_CLK_TCK */
#if HAVE_UNISTD_H
#include <unistd.h>
#endif

/* for CLK_TCK */
#include <time.h>

long clk_tck(void) {
#if defined(CLK_TCK)
    return (CLK_TCK);
#else
    return sysconf(_SC_CLK_TCK);
#endif
}