]> git.lyx.org Git - lyx.git/blob - src/support/kill.C
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / kill.C
1 /**
2  * \file kill.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "lyxlib.h"
14
15 #include <sys/types.h>
16 #include <csignal>
17
18 int lyx::support::kill(int pid, int sig)
19 {
20         return ::kill(pid, sig);
21 }