2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-04 17:31:10 +08:00
artiq/lit-test/libartiq_support/artiq_time.c

16 lines
205 B
C
Raw Normal View History

#include <stdint.h>
#include <stdio.h>
int64_t now = 0;
int watchdog_set(int ms)
{
printf("watchdog_set %d\n", ms);
return ms;
}
void watchdog_clear(int id)
{
printf("watchdog_clear %d\n", id);
}