mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
5f1427b648
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1061 a592a061-630c-0410-9148-cb99ea01b6c8
21 lines
270 B
C
21 lines
270 B
C
#include <config.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
|
|
#ifdef CXX_WORKING_NAMESPACES
|
|
namespace lyx {
|
|
int kill(int pid, int sig)
|
|
{
|
|
return ::kill(pid, sig);
|
|
}
|
|
}
|
|
#else
|
|
#include "lyxlib.h"
|
|
|
|
int lyx::kill(int pid, int sig)
|
|
{
|
|
return ::kill(pid, sig);
|
|
}
|
|
#endif
|