2023-01-31 20:19:02 +00:00
|
|
|
#include "util.h"
|
|
|
|
// mman library to be used for hugepage allocations (e.g. mmap or posix_memalign only)
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
|
|
|
int main(int argc, char const *argv[]) {
|
|
|
|
int flag = -1;
|
|
|
|
|
2024-02-07 14:23:56 +00:00
|
|
|
// [3.2] TODO: Put your capture-the-flag code here
|
2023-01-31 20:19:02 +00:00
|
|
|
|
|
|
|
printf("Flag: %d\n", flag);
|
|
|
|
return 0;
|
|
|
|
}
|