lyx_mirror/src/support/abort.C

22 lines
346 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"
#include <stdlib.h>
void lyx::support::abort()
{
::abort();
}