Documentation
1
2
3
4
5
6
7
8
9
#include <stdlib.h>

int *malloc_wrapper() {
  return (int *) malloc(8);
}

int main() {
  int i = 0;
}