
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16171 54d463be-8e91-2dee-dedb-b68131a5f0ec
9 lines
166 B
C
9 lines
166 B
C
#include <sys/time.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
int main(int argc, char** argv)
|
|
{
|
|
struct timespec tval;
|
|
return clock_gettime(CLOCK_MONOTONIC, &tval);
|
|
}
|