]> git.lyx.org Git - lyx.git/blob - src/support/atoi.C
fix typo that put too many include paths for most people
[lyx.git] / src / support / atoi.C
1 #include <config.h>
2
3 #include <cstdlib>
4
5 #include "lyxlib.h"
6
7 #ifndef CXX_GLOBAL_CSTD
8 using std::atoi;
9 #endif
10
11 int lyx::atoi(string const & nstr)
12 {
13         return ::atoi(nstr.c_str());
14 }