mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-24 20:31:44 +00:00
24 lines
166 B
C
24 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;
|
||
|
}
|