]> git.lyx.org Git - features.git/commitdiff
remove unneeded #includes, cosmetics
authorAndré Pönitz <poenitz@gmx.net>
Fri, 13 Jul 2001 09:54:32 +0000 (09:54 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Fri, 13 Jul 2001 09:54:32 +0000 (09:54 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2232 a592a061-630c-0410-9148-cb99ea01b6c8

31 files changed:
src/mathed/Makefile.am
src/mathed/array.C
src/mathed/formula.C
src/mathed/formula.h
src/mathed/formulabase.h
src/mathed/macro_support.C [deleted file]
src/mathed/macro_support.h [deleted file]
src/mathed/math_arrayinset.C
src/mathed/math_bigopinset.C
src/mathed/math_decorationinset.C
src/mathed/math_deliminset.C
src/mathed/math_dotsinset.C
src/mathed/math_fracinset.C
src/mathed/math_funcinset.C
src/mathed/math_grid.C
src/mathed/math_hash.C
src/mathed/math_inset.C
src/mathed/math_inset.h
src/mathed/math_macro.C
src/mathed/math_macroarg.C
src/mathed/math_macrotemplate.C
src/mathed/math_matrixinset.C
src/mathed/math_root.C
src/mathed/math_scriptinset.C
src/mathed/math_sizeinset.C
src/mathed/math_spaceinset.C
src/mathed/math_sqrtinset.C
src/mathed/math_updowninset.C
src/mathed/math_utils.C
src/mathed/support.C
src/mathed/xarray.C

index 341cf55729d1a5468bdba8785be9addbd3d6e972..5c1d408dce61ea907c52c1642eae32409fe330d5 100644 (file)
@@ -18,8 +18,6 @@ libmathed_la_SOURCES = \
        formula.h \
        formulamacro.C \
        formulamacro.h \
-       macro_support.C \
-       macro_support.h \
        math_arrayinset.C \
        math_arrayinset.h \
        math_bigopinset.C \
index 7141bb79dc7281d3529086f4617c64721fb8637e..afe0994684675a9555ae4ec930b24be36c59f9c7 100644 (file)
@@ -1,13 +1,11 @@
 
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
+#include "math_inset.h"
 #include "debug.h"
 #include "array.h"
-#include "math_inset.h"
 #include "math_scriptinset.h"
 #include "math_parser.h"
 #include "mathed/support.h"
index b3a648990301f0de03235280a3ce2f0ac943e6e8..576769e17e0e74ad07c3ad5e67f80a487bd85cdf 100644 (file)
 *   the GNU General Public Licence version 2 or later.
 */
 
-#include <config.h>
-#include <fstream>
-
-#include "support/LOstream.h"
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
+#include <config.h>
+#include <fstream>
+
 #include "formula.h"
 #include "commandtags.h"
 #include "math_cursor.h"
 #include "math_parser.h"
 #include "lyx_main.h"
 #include "BufferView.h"
-#include "lyxtext.h"
 #include "gettext.h"
 #include "debug.h"
 #include "lyx_gui_misc.h"
@@ -37,7 +34,6 @@
 #include "support/syscall.h"
 #include "LyXView.h"
 #include "Painter.h"
-#include "font.h"
 #include "lyxrc.h"
 #include "math_matrixinset.h"
 #include "mathed/support.h"
index d73fd375b80f316674d669eca118e86af1df0e4f..9a65ae5dee3fd0fa494bf0857264281ee44a0ef4 100644 (file)
@@ -21,7 +21,6 @@
 #pragma interface
 #endif
 
-#include "LString.h"
 #include "mathed/formulabase.h"
 #include "math_defs.h"
 
index be8e5ce689a5e2d18d8fc5f7fc3bf779440c3fd8..aa330d6568eb99ef2ad3a00c16768e65ca7232f8 100644 (file)
@@ -20,8 +20,6 @@
 #endif
 
 #include <iosfwd>
-#include <boost/smart_ptr.hpp>
-
 #include "insets/inset.h"
 
 class Buffer;
diff --git a/src/mathed/macro_support.C b/src/mathed/macro_support.C
deleted file mode 100644 (file)
index 1643061..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <config.h>
-
-#include "support/LOstream.h"
-#include "macro_support.h"
-
-using std::ostream;
-
-ostream & operator<<(ostream & o, MathMacroFlag mmf)
-{
-       return o << int(mmf);
-}
diff --git a/src/mathed/macro_support.h b/src/mathed/macro_support.h
deleted file mode 100644 (file)
index a8a3624..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// -*- C++ -*-
-#ifndef MACRO_SUPPORT_H
-#define MACRO_SUPPORT_H
-
-#include <iosfwd>
-
-enum MathMacroFlag {
-       MMF_Env  = 1,
-       MMF_Exp  = 2,
-       MMF_Edit = 4
-};
-
-std::ostream & operator<<(std::ostream & o, MathMacroFlag mmf);
-#endif
index 9a8b6adf904ce0f767a64fc91570ae4fd5da9afd..83577735db2a36e8e8d01bb94ff7e5a2187d9726 100644 (file)
@@ -1,13 +1,9 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "math_arrayinset.h"
 #include "support/LOstream.h"
-#include "Painter.h"
-
 
 
 MathArrayInset::MathArrayInset(int m, int n)
index 2da8735809af8d1acd700adc75f0802e8358d70d..d08140621796e8c411abae6e8524ea268668f668 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #include "math_bigopinset.h"
 #include "Painter.h"
 #include "mathed/support.h"
index 4126f3a9189be328289c491ac7dd9d18f97cc883..fb3ae4009c10005c18a01c705ad6ec8fa38b4d34 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
@@ -8,7 +6,6 @@
 #include "mathed/support.h"
 #include "math_parser.h"
 #include "support/LOstream.h"
-#include "support/lstrings.h"
 
 
 using std::ostream;
index 44a0a0c403b811b20f97b50862e5feaf579445ca..1ee6475ddbffc05cd5f6ca88834eb6b6f92d218c 100644 (file)
@@ -1,12 +1,9 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "math_deliminset.h"
 #include "math_parser.h"
-#include "LColor.h"
 #include "Painter.h"
 #include "mathed/support.h"
 #include "support/LOstream.h"
index e08ef4f789bb7c04c5269df661c4cbe33e8e2ab9..7054cde4bf2bf0e2a41a090294673a52cbbfd9cf 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
index 7e6a166d9d11744a5e74ed6875a181b08b756dbb..576f98c4e877fe15f8d0dd30dff23a3f63425bbb 100644 (file)
@@ -1,15 +1,10 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-#include <functional>
-
 #include "math_fracinset.h"
-#include "LColor.h"
-#include "Painter.h"
 #include "mathed/support.h"
+#include "Painter.h"
 #include "support/LOstream.h"
 
 
index c2e7f61df3c2edf925512a3efa3da5a7a3f80b50..f88af12da8064e0aed2efe39b2971c375fa0e7d8 100644 (file)
@@ -1,11 +1,8 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "math_funcinset.h"
-#include "lyxfont.h"
 #include "font.h"
 #include "Painter.h"
 #include "mathed/support.h"
index 28bb8208d2736ca71dc582b17ed06cf5af351175..51265a497d6f238e3b4c0978acc19b9cc205ccdf 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
index 99292e98ba79fbf2b34b102c1372e1ed83c27a46..51b70065cb0610572b518c7986b5be0848aab71d 100644 (file)
@@ -1,5 +1,4 @@
 #include <config.h>
-
 #include <map>
 
 #include "math_defs.h"
index bc635a3a7b00917d3943e60c12dedaf916d87e4f..fece66cb1e4254640bb335f6c9004b88643b2ce6 100644 (file)
  *   the GNU General Public Licence version 2 or later.
  */
 
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "math_inset.h"
-#include "mathed/support.h"
-#include "Painter.h"
 #include "debug.h"
 
 
index c479e517dfbedd6d83c805bc427d5c308035cb93..91077fe5a08d14303e529960d1d5ec92d68b3886 100644 (file)
@@ -22,6 +22,8 @@
 #ifndef MATH_INSET_H
 #define MATH_INSET_H
 
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma interface
 #endif
index f0a9e13c961e9958a6564e3106a67196fd923fb1..01ce91fc4b2b66bcd406ec128e322a10303a61bb 100644 (file)
@@ -14,8 +14,6 @@
  *  This code is under the GNU General Public Licence version 2 or later.
  */
 
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
index 553aaef9f59405d79edb8ec1fd1086c57f56f39b..c64f750c77dab189abf72ca85c5f4da5a6715cdb 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
@@ -8,7 +6,6 @@
 #include "math_macro.h"
 #include "math_defs.h"
 #include "mathed/support.h"
-#include "support/LAssert.h"
 #include "debug.h"
 
 
@@ -19,7 +16,6 @@ MathMacroArgument::MathMacroArgument(int n)
        if (n < 1 || n > 9) {
                lyxerr << "MathMacroArgument::MathMacroArgument: wrong Argument id: "
                        << n << std::endl;
-               lyx::Assert(0);
        }
 }
 
index e3846aa0ca08d304328d193c67191a1a743000e3..5401991cdcef8255881b0d36fe7954d82082ebae 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
index 231415091596ef13de183b180f0385fe3939eece..bed9f943b1438bc1b43c9e84a377248e963f7037 100644 (file)
@@ -1,11 +1,8 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include <vector>
-#include <functional>
 
 #include "math_matrixinset.h"
 #include "debug.h"
index 19e3cbd442ba502b8707a30857482f5107b1b61d..e440b798afb4f2060ee6d2f858601523f4ee8374 100644 (file)
  *   the GNU General Public Licence version 2 or later.
  */
 
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-#include <functional>
-
 #include "math_root.h"
 #include "support/LOstream.h"
 #include "Painter.h"
index 3cf77fbcd647904c2b1130175ec05691e1a29b03..09e52cccf0e6fbdda0c4543f7526eb30eb316dfe 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
index f6dc71f82cfed4a74bed03fc98f5920a600b7455..124f03bce35f214624c283107ba994f998ce7cc8 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
index 8c6d91369c26ae96b5be6ad51d19a330d5cb6dd7..926546a72cd83c6b79c262e8d526a5678d33b08d 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
@@ -7,7 +5,6 @@
 #include "math_spaceinset.h"
 #include "LColor.h"
 #include "Painter.h"
-#include "mathed/support.h"
 #include "support/LOstream.h"
 
 
index e802a4e0c7facb2a3b21748e822047f3f639bd3b..6ad124ef0fd97bd4126ec72c48e14f83b0869f33 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
@@ -7,7 +5,6 @@
 #include "math_sqrtinset.h"
 #include "LColor.h"
 #include "Painter.h"
-#include "support.h"
 #include "support/LOstream.h"
 
 
index 457225c27679471eb2b0b3bc12b116038c99a748..86aeb2b31773115195f7416388a0932cee37b488 100644 (file)
@@ -1,5 +1,3 @@
-#include <config.h>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
index cd1b0a6c1a35394e69807d1fc15f037c335a7eb5..7d559ec52ccbdf012df268b30685777310c54601 100644 (file)
@@ -9,8 +9,6 @@
  *  License: GNU GPL version 2 or later
  */
 
-#include <config.h>
-
 #include <algorithm>
 
 #include "math_defs.h"
index 2446694eb9f7e13eb61d2cf58d2a49844d547336..cdac2c67c04cecc6c4453505eb09d5b5b1d2de74 100644 (file)
@@ -17,10 +17,6 @@ using std::lower_bound;
 using std::endl;
 using std::max;
 
-///
-/// rotating things
-///
-
 ///
 class Matrix {
 public:
@@ -29,69 +25,66 @@ public:
        ///
        Matrix();
        ///
-       void rota(int);
+       void rotate(int);
        ///
-       void escala(float, float);
+       void escalate(float, float);
        ///
-       void transf(float, float, float &, float &);
+       void transform(float, float, float &, float &);
 private:
        ///
        matriz_data m_;
        ///
-       void matmat(matriz_data & a);
-       ///
-       static matriz_data const MATIDEN;
+       void multiply(matriz_data & a);
 };
 
-
-#define mateq(m1, m2)  memcpy(m1, m2, sizeof(matriz_data))
-
-
-Matrix::matriz_data const Matrix::MATIDEN = { {1, 0}, {0, 1}};
-
-
 Matrix::Matrix()
 {
-       mateq(m_, MATIDEN);
+       m_[0][0] = 1;
+       m_[0][1] = 0;
+       m_[1][0] = 0;
+       m_[1][1] = 1;
 }
 
-
-void Matrix::rota(int code)
+void Matrix::rotate(int code)
 {
        matriz_data r;
-       mateq(r, MATIDEN);
+       r[0][0] = 1;
+       r[0][1] = 0;
+       r[1][0] = 0;
+       r[1][1] = 1;
        float const cs = (code & 1) ? 0 : (1 - code);
        float const sn = (code & 1) ? (2 - code) : 0;
        r[0][0] = cs;
        r[0][1] = sn;
        r[1][0] = -r[0][1];
        r[1][1] = r[0][0];
-       matmat(r);
+       multiply(r);
 }
 
-
-void Matrix::escala(float x, float y)
+void Matrix::escalate(float x, float y)
 {
        matriz_data s;
-       mateq(s, MATIDEN);
        s[0][0] = x;
+       s[0][1] = 0;
+       s[1][0] = 0;
        s[1][1] = y;
-       matmat(s);
+       multiply(s);
 }
 
-
-void Matrix::matmat(matriz_data & a)
+void Matrix::multiply(matriz_data & a)
 {
        matriz_data c;
        c[0][0] = a[0][0] * m_[0][0] + a[0][1] * m_[1][0];
        c[1][0] = a[1][0] * m_[0][0] + a[1][1] * m_[1][0];
        c[0][1] = a[0][0] * m_[0][1] + a[0][1] * m_[1][1];
        c[1][1] = a[1][0] * m_[0][1] + a[1][1] * m_[1][1];
-       mateq(m_, c);
+       m_[0][0] = c[0][0];     
+       m_[0][1] = c[0][1];     
+       m_[1][0] = c[1][0];     
+       m_[1][1] = c[1][1];     
 }
 
-
-void Matrix::transf(float xp, float yp, float & x, float & y)
+void Matrix::transform(float xp, float yp, float & x, float & y)
 {
        x = m_[0][0] * xp + m_[0][1] * yp;
        y = m_[1][0] * xp + m_[1][1] * yp;
@@ -99,12 +92,6 @@ void Matrix::transf(float xp, float yp, float & x, float & y)
 
 
 
-
-
-
-
-
-
 extern LyXFont WhichFont(short type, int size);
 
 char const * math_font_name[] = {
@@ -300,57 +287,57 @@ struct math_deco_struct {
 
 math_deco_struct math_deco_table[] = {   
        // Decorations
-       { LM_widehat,       &angle[0],   3 },
-       { LM_widetilde,     &tilde[0],   0 },
-       { LM_underline,     &hline[0],   0 },
-       { LM_overline,      &hline[0],   0 },
-       { LM_underbrace,    &brace[0],   1 },
-       { LM_overbrace,     &brace[0],   3 },
-       { LM_overleftarrow, &arrow[0],   1 },
-       { LM_overightarrow, &arrow[0],   3 },
-       
-       // Delimiters
-       { '(',              &parenth[0], 0 },
-       { ')',              &parenth[0], 2 },
-       { '{',              &brace[0],   0 },
-       { '}',              &brace[0],   2 },
-       { '[',              &brack[0],   0 },
-       { ']',              &brack[0],   2 },
-       { '|',              &vert[0],    0 },
-       { '/',              &slash[0],   0 },
-       { LM_Vert,          &Vert[0],    0 },
-       { LM_backslash,     &slash[0],   1 },
-       { LM_langle,        &angle[0],   0 },
-       { LM_lceil,         &corner[0],  0 }, 
-       { LM_lfloor,        &corner[0],  1 },  
-       { LM_rangle,        &angle[0],   2 }, 
-       { LM_rceil,         &corner[0],  3 }, 
-       { LM_rfloor,        &corner[0],  2 },
-       { LM_downarrow,     &arrow[0],   2 },
-       { LM_Downarrow,     &Arrow[0],   2 }, 
-       { LM_uparrow,       &arrow[0],   0 },
-       { LM_Uparrow,       &Arrow[0],   0 },
-       { LM_updownarrow,   &udarrow[0], 0 },
-       { LM_Updownarrow,   &Udarrow[0], 0 },    
-       
-       // Accents   
-       { LM_ddot,          &hline2[0],  0 },
-       { LM_hat,           &angle[0],   3 },
-       { LM_grave,         &slash[0],   1 },
-       { LM_acute,         &slash[0],   0 },
-       { LM_tilde,         &tilde[0],   0 },
-       { LM_bar,           &hline[0],   0 },
+       { LM_widehat,       &angle[0],      3 },
+       { LM_widetilde,     &tilde[0],      0 },
+       { LM_underline,     &hline[0],      0 },
+       { LM_overline,      &hline[0],      0 },
+       { LM_underbrace,    &brace[0],      1 },
+       { LM_overbrace,     &brace[0],      3 },
+       { LM_overleftarrow, &arrow[0],      1 },
+       { LM_overightarrow, &arrow[0],      3 },
+                                           
+       // Delimiters                       
+       { '(',              &parenth[0],    0 },
+       { ')',              &parenth[0],    2 },
+       { '{',              &brace[0],      0 },
+       { '}',              &brace[0],      2 },
+       { '[',              &brack[0],      0 },
+       { ']',              &brack[0],      2 },
+       { '|',              &vert[0],       0 },
+       { '/',              &slash[0],      0 },
+       { LM_Vert,          &Vert[0],       0 },
+       { LM_backslash,     &slash[0],      1 },
+       { LM_langle,        &angle[0],      0 },
+       { LM_lceil,         &corner[0],     0 }, 
+       { LM_lfloor,        &corner[0],     1 },  
+       { LM_rangle,        &angle[0],      2 }, 
+       { LM_rceil,         &corner[0],     3 }, 
+       { LM_rfloor,        &corner[0],     2 },
+       { LM_downarrow,     &arrow[0],      2 },
+       { LM_Downarrow,     &Arrow[0],      2 }, 
+       { LM_uparrow,       &arrow[0],      0 },
+       { LM_Uparrow,       &Arrow[0],      0 },
+       { LM_updownarrow,   &udarrow[0],    0 },
+       { LM_Updownarrow,   &Udarrow[0],    0 },         
+                                           
+       // Accents                          
+       { LM_ddot,          &hline2[0],     0 },
+       { LM_hat,           &angle[0],      3 },
+       { LM_grave,         &slash[0],      1 },
+       { LM_acute,         &slash[0],      0 },
+       { LM_tilde,         &tilde[0],      0 },
+       { LM_bar,           &hline[0],      0 },
        { LM_dot,           &hlinesmall[0], 0 },
-       { LM_check,         &angle[0],   1 },
-       { LM_breve,         &parenth[0], 1 },
-       { LM_vec,           &arrow[0],   3 },
-       { LM_not,           &slash[0],   0 },  
-                           
-       // Dots             
-       { LM_ldots,         &hline3[0],  0 }, 
-       { LM_cdots,         &hline3[0],  0 },
-       { LM_vdots,         &hline3[0],  1 },
-       { LM_ddots,         &dline3[0],  0 }
+       { LM_check,         &angle[0],      1 },
+       { LM_breve,         &parenth[0],    1 },
+       { LM_vec,           &arrow[0],      3 },
+       { LM_not,           &slash[0],      0 },  
+                                           
+       // Dots                             
+       { LM_ldots,         &hline3[0],     0 }, 
+       { LM_cdots,         &hline3[0],     0 },
+       { LM_vdots,         &hline3[0],     1 },
+       { LM_ddots,         &dline3[0],     0 }
 };
 
 
@@ -388,8 +375,7 @@ static init_deco_table idt;
 
 } // namespace anon
 
-void mathed_char_dim
-               (short type, int size, byte c, int & asc, int & des, int & wid)
+void mathed_char_dim (short type, int size, byte c, int & asc, int & des, int & wid)
 {
        LyXFont const font = WhichFont(type, size);
        des = lyxfont::descent(c, font);
@@ -508,12 +494,12 @@ void mathed_draw_deco(Painter & pain, int x, int y, int w, int h, int code)
        if (h > 70 && (mds->code == int('(') || mds->code == int(')')))
                d = parenthHigh;
        
-       mt.rota(r);
-       mt.escala(w, h);
+       mt.rotate(r);
+       mt.escalate(w, h);
        
        int const n = (w < h) ? w : h;
-       sqmt.rota(r);
-       sqmt.escala(n, n);
+       sqmt.rotate(r);
+       sqmt.escalate(n, n);
        if (r > 0 && r < 3) y += h;   
        if (r >= 2) x += w;   
        do {
@@ -526,10 +512,10 @@ void mathed_draw_deco(Painter & pain, int x, int y, int w, int h, int code)
                        xx = d[i++]; yy = d[i++];
                        x2 = d[i++]; y2 = d[i++];
                        if (code == 3) 
-                               sqmt.transf(xx, yy, xx, yy);
+                               sqmt.transform(xx, yy, xx, yy);
                        else
-                               mt.transf(xx, yy, xx, yy);
-                       mt.transf(x2, y2, x2, y2);
+                               mt.transform(xx, yy, xx, yy);
+                       mt.transform(x2, y2, x2, y2);
                        pain.line(x + int(xx), y + int(yy),
                                  x + int(x2), y + int(y2),
                                  LColor::mathline);
@@ -545,9 +531,9 @@ void mathed_draw_deco(Painter & pain, int x, int y, int w, int h, int code)
                                xx = d[i++]; yy = d[i++];
 //          lyxerr << " " << xx << " " << yy << " ";
                                if (code == 4) 
-                                       sqmt.transf(xx, yy, xx, yy);
+                                       sqmt.transform(xx, yy, xx, yy);
                                else
-                                       mt.transf(xx, yy, xx, yy);
+                                       mt.transform(xx, yy, xx, yy);
                                xp[j] = x + int(xx);
                                yp[j] = y + int(yy);
                                //  lyxerr << "P[" << j " " << xx << " " << yy << " " << x << " " << y << "]";
index 8d3c9c11a719e8492943c0f55b121b5e7f896867..0c19f1e8bc94c321f6ea44ef43c6753088680151 100644 (file)
@@ -1,4 +1,3 @@
-
 #include <config.h>
 
 #ifdef __GNUG__