zpool(8) uses tbl.
[netbsd-mini2440.git] / tools / compat / issetugid.c
blobe8ee37fecdce78c54b358a7617a7cfb0e977de86
1 /* $NetBSD: issetugid.c,v 1.1 2002/04/18 15:31:53 bjh21 Exp $ */
3 /*
4 * Written by Ben Harris, 2002
5 * This file is in the Public Domain
6 */
8 #include "nbtool_config.h"
10 #if !HAVE_ISSETUGID
11 int
12 issetugid(void)
16 * Assume that anything linked against libnbcompat will be installed
17 * without special privileges.
19 return 0;
21 #endif