apparmor/tests/regression/subdomain/coredump.c
Steve Beattie 6d3e74907d Import the rest of the core functionality of the internal apparmor
development tree (trunk branch). From svn repo version 6381.
2006-04-11 21:52:54 +00:00

21 lines
358 B
C

int *ptr;
/*
* Copyright (C) 2002-2005 Novell/SUSE
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, version 2 of the
* License.
*/
main()
{
printf("This will cause a sigsegv\n");
ptr=0;
*ptr=0xdeadbeef;
return 0;
}