File: getrtable.c

package info (click to toggle)
openiked 7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,896 kB
  • sloc: ansic: 34,441; yacc: 2,816; perl: 690; makefile: 635; sh: 135
file content (21 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Placed in the public domain */

#include "openbsd-compat.h"

#if !defined(HAVE_GETRTABLE)
int
getrtable(void)
{
	return (0);
}
#endif

#if !defined(HAVE_SETRTABLE)
int
setrtable(int rtableid)
{
	if (rtableid == 0)
		return (0);
	return (-1);
}
#endif