mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-24 12:21:34 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@39206 72102866-910b-0410-8b05-ffd578937521
23 lines
166 B
C
23 lines
166 B
C
#include <windows.h>
|
|
|
|
static void
|
|
foo()
|
|
{
|
|
int *f=NULL;
|
|
*f = 0;
|
|
}
|
|
|
|
static void
|
|
bar()
|
|
{
|
|
foo();
|
|
}
|
|
|
|
int
|
|
main()
|
|
{
|
|
LoadLibraryA("backtrace.dll");
|
|
bar();
|
|
|
|
return 0;
|
|
}
|