]> git.lyx.org Git - lyx.git/blobdiff - src/support/abort.C
MacOSX compile fix.
[lyx.git] / src / support / abort.C
index 46f57ce2a94d5515791b1e73131840f869becc2a..902de762e1b58b564d943e59abdf2765567f0f77 100644 (file)
@@ -1,10 +1,23 @@
-#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()
+#ifdef HAVE_STDLIB_H
+# include <stdlib.h>
+#endif
+
+
+void lyx::support::abort()
 {
        ::abort();
 }