1 #include <libcgc.h>
2 #include <stdlib.h>
3 #include <string.h>
4 
5 /* Just leak 4 bytes from the flag page, performing a simple mutation on those bytes */
6 
main(int secret_page_i)7 int __attribute((fastcall)) main(int secret_page_i)
8 {
9 
10   printf("calling stuff to be identified...\n");
11   int i;
12   int *addrs[20];
13   int *a, *b, *c, *d, *e;
14 
15   strcmp(addrs[0], addrs[1]);
16 
17   strncmp(addrs[0], addrs[1], 5);
18 
19   memcmp(addrs[0], addrs[1], 5);
20 
21 }
22