1/*
2 * Copyright 2011, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include <signal.h>
8
9#include <signal_defs.h>
10
11
12int
13__signal_get_sigrtmin()
14{
15	return SIGNAL_REALTIME_MIN;
16}
17
18
19int
20__signal_get_sigrtmax()
21{
22	return SIGNAL_REALTIME_MAX;
23}
24