]> git.lyx.org Git - lyx.git/blob - src/support/atoi.C
one small private fix in mathed, put noncopyable and tie into boost namespace
[lyx.git] / src / support / atoi.C
1 #include <config.h>
2
3 #include <cstdlib>
4
5 #include "lyxlib.h"
6
7
8 int lyx::atoi(string const & nstr)
9 {
10         return ::atoi(nstr.c_str());
11 }