#include <stdlib.h>
void freigabe(int array[100])
{
  free(array);
}

int main()
{
  int array[100];
  freigabe(array);
  return 0;
}
