https://github.com/JuliaLang/julia
Raw File
Tip revision: bd976124d02c53b69068ab13db44c18baf092b16 authored by Oscar Blumberg on 03 October 2015, 16:09:10 UTC
Liveness computation
Tip revision: bd97612
timefuncs.h
// This file is a part of Julia. License is MIT: http://julialang.org/license

#ifndef TIMEFUNCS_H
#define TIMEFUNCS_H

#ifdef __cplusplus
extern "C" {
#endif

DLLEXPORT double clock_now(void);
void sleep_ms(int ms);

#ifdef __cplusplus
}
#endif

#endif
back to top