Remove unused args in main

This commit is contained in:
Imbus 2025-06-01 14:34:17 +02:00
parent 9186a45be9
commit 65d8891c0e

View file

@ -5,7 +5,7 @@
struct timespec ts = {.tv_nsec = 30, .tv_sec = 0};
volatile int dummy = 0;
int main(int argc, char *argv[]) {
int main(void) {
struct timespec start, end;
clock_gettime(CLOCK_MONOTONIC, &start);