#include <stdio.h>
#include <linux/unistd.h>
extern long __res;

_syscall0(void,my_func);

main()
{
		
	
	my_func();
	printf("going to print my call\n");

	printf("bye bye \n");

}
