1 /* Public domain. */
2 
3 #ifndef PROT_H
4 #define PROT_H
5 
6 #include <sys/param.h>
7 #include <unistd.h>
8 
9 extern int prot_gid(gid_t);
10 extern int prot_uid(uid_t);
11 
12 #endif
13