mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
11 lines
171 B
C++
11 lines
171 B
C++
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
#include "nsISupportsUtils.h"
|
||
|
|
#include "nsTraceRefcnt.h"
|
||
|
|
|
||
|
|
int main(int argc, char* argv[])
|
||
|
|
{
|
||
|
|
nsTraceRefcnt::WalkTheStack(stdout);
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|