Line | Count | Source (jump to first uncovered line) |
1 | /* Placed in the public domain */ | |
2 | ||
3 | #include "openbsd-compat.h" | |
4 | ||
5 | #if !defined(HAVE_GETRTABLE) | |
6 | int | |
7 | getrtable(void) | |
8 | 0 | { |
9 | 0 | return (0); |
10 | 0 | } |
11 | #endif | |
12 | ||
13 | #if !defined(HAVE_SETRTABLE) | |
14 | int | |
15 | setrtable(int rtableid) | |
16 | 0 | { |
17 | 0 | if (rtableid == 0) |
18 | 0 | return (0); |
19 | 0 | return (-1); |
20 | 0 | } |
21 | #endif |