/*
 * minervini@neuralnoise.com (c) 2004, All rights reserved.
 * 
 * Nothing can be reproduced in whole or in part without the prior
 * written permission of the author.
 * Permission to link to this code from the internet is hereby granted.
 */

#include <sys/types.h>

u_int8_t buffer[] = "\xeb\xfe";	/* __asm__("jmp ."); on IA32. */

int
main (void)
{
  void (*go) () = (void *) buffer;
  go ();
  return (0);
}
