lyx_mirror/src/support/abort.C

24 lines
375 B
C++
Raw Normal View History

/**
* \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<EFBFBD>nnes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "support/lyxlib.h"
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
void lyx::support::abort()
{
::abort();
}