]> git.lyx.org Git - lyx.git/blobdiff - src/support/abort.C
hopefully fix tex2lyx linking.
[lyx.git] / src / support / abort.C
index 46f57ce2a94d5515791b1e73131840f869becc2a..f598264f3e193cea99617dfad2fbaad8099625d3 100644 (file)
@@ -1,10 +1,29 @@
-#include <config.h>
+/**
+ * \file abort.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
-#include <stdlib.h>
+#include <config.h>
 
 #include "support/lyxlib.h"
 
-void lyx::abort()
+
+namespace lyx {
+
+#ifdef HAVE_STDLIB_H
+# include <stdlib.h>
+#endif
+
+
+void lyx::support::abort()
 {
        ::abort();
 }
+
+
+} // namespace lyx