FIX static timeGetTime, make it similar to linux port (#358)

This commit is contained in:
Patrick Grimm
2022-11-20 21:27:30 +01:00
committed by GitHub
parent 0f75085771
commit 78fd0cf9cb
3 changed files with 27 additions and 10 deletions
+1 -1
View File
@@ -38,7 +38,7 @@
static struct timespec start;
/* The timeGetTime function retrieves the system time, in milliseconds.
The system time is the time elapsed since the OS was started. */
unsigned long timeGetTime(void)
static unsigned long timeGetTime(void)
{
struct timespec now;
unsigned long ticks;