clboss/Ev/now.cpp
2020-10-04 16:22:35 +08:00

10 lines
101 B
C++

#include"Ev/now.hpp"
#include<ev.h>
namespace Ev {
double now() {
return ev_now(EV_DEFAULT);
}
}