|
reSIProcate/stack
9694
|
#include "resip/stack/SipStack.hxx"
Go to the source code of this file.
Functions | |
| int | main (int argc, char *argv[]) |
| int main | ( | int | argc, |
| char * | argv[] | ||
| ) |
Definition at line 3 of file testCorruption.cxx.
{
using namespace std;
int i = 1;
int j = 2;
int k = 3;
cerr << "i = " << i << ", j = " << j << ", k = " << k << endl;
resip::SipStack stack1;
cerr << "i = " << i << ", j = " << j << ", k = " << k << endl;
return 0;
}
1.7.5.1