gecko-dev/xpcom/tests/TestStackCrawl.cpp
Sylvestre Ledru 6f45c666bc Bug 1513205 - Also update the tests to match the Google coding style r=Ehsan
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D14595

--HG--
extra : moz-landing-system : lando
2018-12-14 18:10:35 +00:00

10 lines
166 B
C++

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