timing.c 264 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #include <inttypes.h> #include <stdlib.h> #include <stdio.h> #include "util.h" const uint64_t REPEATS = 10000; int main() { page_t *page = calloc(1, sizeof(page_t)); // TODO (student): Implement this printf("ratio = %f\n", 0.0); free(page); }