]> git.lyx.org Git - features.git/commitdiff
Add a missing #include <cstdio> for sscanf.
authorAngus Leeming <leeming@lyx.org>
Thu, 28 Feb 2002 19:44:31 +0000 (19:44 +0000)
committerAngus Leeming <leeming@lyx.org>
Thu, 28 Feb 2002 19:44:31 +0000 (19:44 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3617 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/LaTeX.C

index 436ec3229cb3bf451db693751ed8d19a9684e51c..504b915c1dbd628f16b9a36631ae7191203f9e2b 100644 (file)
@@ -14,6 +14,8 @@
        * text.C:
        * text2.C: remove #include "lyx_gui_misc.h".
 
+       * LaTeX.C: added #include <cstdio>
+
 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
 
        * paragraph.C (getMaxDepthAfter): new method. The maximal depth
index a23e60b8609691b3e599b496a4481088f0de6e2c..054a7796a1f0303226765709a58e4dd6dc9a1c9a 100644 (file)
@@ -32,6 +32,7 @@
 #include "support/systemcall.h"
 #include "support/os.h"
 #include "support/path.h"
+#include <cstdio>  // sscanf
 
 using std::ifstream;
 using std::getline;