]> git.lyx.org Git - lyx.git/blob - src/support/atoi.C
Add a bunch of c_str() for string stream uses; remove lyxfunc symbol-insert.
[lyx.git] / src / support / atoi.C
1 #include <config.h>
2
3 #include <cstdlib>
4
5 #include "lyxlib.h"
6
7 #if 0
8 using std::atoi;
9 #endif
10
11 int lyx::atoi(string const & nstr)
12 {
13         return ::atoi(nstr.c_str());
14 }