]> git.lyx.org Git - lyx.git/blobdiff - src/support/atoi.C
Remove executable status info from typeIndicator.
[lyx.git] / src / support / atoi.C
index 17f9847ccefc7884eabff7b42bbbd04dd7c84437..674c2edef315ac84060dfd86d42b8b38881d7f63 100644 (file)
@@ -1,11 +1,25 @@
+/**
+ * \file atoi.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #include <config.h>
 
-#include <cstdlib>
+#include "support/lyxlib.h"
 
-#include "lyxlib.h"
+#include <cstdlib>
 
+#ifndef CXX_GLOBAL_CSTD
+using std::atoi;
+#endif
 
-int lyx::atoi(string const & nstr)
+int lyx::support::atoi(std::string const & nstr)
 {
        return ::atoi(nstr.c_str());
 }