/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/support/timefuncs.h
23 строки
422 B
Tristan Konolige
Add JL_ namespace to all header include guards (#22904)
22 июл 2017, 05:44
22 июл 2017, 05:44
a627e51
Код
Авторство
О чём код?
// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef JL_TIMEFUNCS_H #define JL_TIMEFUNCS_H #ifdef __cplusplus extern "C" { #endif struct jl_timeval { int64_t sec; /* seconds */ int64_t usec; /* microseconds */ }; JL_DLLEXPORT int jl_gettimeofday(struct jl_timeval *jtv); JL_DLLEXPORT double jl_clock_now(void); void sleep_ms(int ms); #ifdef __cplusplus } #endif #endif