Mypal/xpcom/tests/TestStackCrawl.cpp
2019-03-11 13:26:37 +03:00

12 lines
171 B
C++

#include <stdio.h>
#include "nsISupportsUtils.h"
#include "nsTraceRefcnt.h"
int main(int argc, char* argv[])
{
nsTraceRefcnt::WalkTheStack(stdout);
return 0;
}