mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
b0da75ab1e
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1976 a592a061-630c-0410-9148-cb99ea01b6c8
15 lines
180 B
C
15 lines
180 B
C
#include <config.h>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include "lyxlib.h"
|
|
|
|
#ifndef CXX_GLOBAL_CSTD
|
|
using std::atoi;
|
|
#endif
|
|
|
|
int lyx::atoi(string const & nstr)
|
|
{
|
|
return ::atoi(nstr.c_str());
|
|
}
|