#include <fcntl.h>

char x[2]={0,135};

main()
{
	int f=open("vmlinux", O_RDWR);
	if(f==-1)
		perror("open");
	if(write(f,x,2)!=2)
		perror("write");
	close(f);
}
