xref: /haiku/src/system/libroot/posix/signal/signal_limits.cpp (revision fce4895d1884da5ae6fb299d23c735c598e690b1)
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 
12 int
13 __signal_get_sigrtmin()
14 {
15 	return SIGNAL_REALTIME_MIN;
16 }
17 
18 
19 int
20 __signal_get_sigrtmax()
21 {
22 	return SIGNAL_REALTIME_MAX;
23 }
24