mirror of
https://github.com/status-im/nim-taskpools.git
synced 2025-02-17 00:17:21 +00:00
11 lines
295 B
Nim
11 lines
295 B
Nim
|
|
import strutils, os
|
|
|
|
const cSourcesPath = currentSourcePath.rsplit(DirSep, 1)[0]
|
|
const cHeader = csourcesPath / "wtime.h"
|
|
|
|
{.passC: "-I" & cSourcesPath .}
|
|
|
|
proc wtime_usec*: float64 {.importc: "Wtime_usec", header: cHeader.}
|
|
proc wtime_msec*: float64 {.importc: "Wtime_msec", header: cHeader.}
|