11 lines
178 B
C++
11 lines
178 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#include "ticks.h"
|
|
|
|
#include <mach/mach_time.h>
|
|
#include <unistd.h>
|
|
|
|
U64 baue_ticks( void )
|
|
{
|
|
return mach_absolute_time();
|
|
}
|