Skip to content
Snippets Groups Projects
Verified Commit 2c3195d5 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Ignore clock function in time/time

parent 634b2ed8
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,7 @@ int main(void) { ...@@ -13,6 +13,7 @@ int main(void) {
time_t t = time(NULL); time_t t = time(NULL);
ERROR_IF(time, t, == (time_t)-1); ERROR_IF(time, t, == (time_t)-1);
clock_t c = clock(); // TODO: Support clock() on Redox
ERROR_IF(clock, c, == (clock_t)-1); // clock_t c = clock();
// ERROR_IF(clock, c, == (clock_t)-1);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment