#include <stdio.h>
#include <stdlib.h>

typedef struct
{
	int a;
	int b;
} s;

void *func()
{
	return NULL;
}


int main(void) {
	struct s *ptr1 = func();


	free(ptr1);
	
	return 0;
}
