input: Move get_current_time_msec in from util

get_current_time_msec is only used in cursor.c, so we can move it in and
make it static. This is primarily intended to avoid a symbol collision
with wlroots, which we unfortunately do not have a good solution for
yet.
This commit is contained in:
Kenny Levinsen 2021-06-20 19:24:55 +02:00 committed by Simon Ser
parent f81dc1ecc0
commit 80315217f7
3 changed files with 7 additions and 12 deletions

View file

@ -10,12 +10,6 @@
#include "log.h"
#include "util.h"
uint32_t get_current_time_msec(void) {
struct timespec now;
clock_gettime(CLOCK_MONOTONIC, &now);
return now.tv_sec * 1000 + now.tv_nsec / 1000000;
}
int wrap(int i, int max) {
return ((i % max) + max) % max;
}