mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
d6665cba42
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1041 a592a061-630c-0410-9148-cb99ea01b6c8
11 lines
131 B
C
11 lines
131 B
C
#include <config.h>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include "lyxlib.h"
|
|
|
|
int lyx::atoi(string const & nstr)
|
|
{
|
|
return ::atoi(nstr.c_str());
|
|
}
|