timing.c 264 Bytes
#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);
}