Use correct header for EXIT_SUCCESS

This commit is contained in:
Danny Robson 2011-07-06 19:39:22 +10:00
parent f6d96fbe1b
commit 24e4cb4b35

View File

@ -1,12 +1,13 @@
#include "../backtrace.hpp"
#include <iostream>
using namespace std;
int
main (int, char **) {
cout << debug::backtrace() << endl;
return EXIT_SUCCESS;
}
#include "../backtrace.hpp"
#include <iostream>
#include <cstdlib>
using namespace std;
int
main (int, char **) {
cout << debug::backtrace() << endl;
return EXIT_SUCCESS;
}