Ignore clock function in time/time

This commit is contained in:
Jeremy Soller
2019-07-06 19:09:24 -06:00
parent 634b2ed835
commit 2c3195d54b
+3 -2
View File
@@ -13,6 +13,7 @@ int main(void) {
time_t t = time(NULL);
ERROR_IF(time, t, == (time_t)-1);
clock_t c = clock();
ERROR_IF(clock, c, == (clock_t)-1);
// TODO: Support clock() on Redox
// clock_t c = clock();
// ERROR_IF(clock, c, == (clock_t)-1);
}