Expand PMF_FN_* macros.
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / src / global / user_acl.h
blob3d3ae6b3ffe9f4dd8b3d877d3db935beaa669627
1 /* $NetBSD$ */
3 #ifndef _USER_ACL_H_INCLUDED_
4 #define _USER_ACL_H_INCLUDED_
5 /*++
6 /* NAME
7 /* user_acl 3h
8 /* SUMMARY
9 /* Convert uid to username and check against given ACL.
10 /* SYNOPSIS
11 /* #include <user_acl.h>
13 /* DESCRIPTION
14 /* .nf
17 * System library
19 #include <unistd.h> /* getuid()/geteuid() */
20 #include <sys/types.h> /* uid_t */
23 * Utility library.
25 #include <vstring.h>
28 * External interface
30 extern const char *check_user_acl_byuid(char *, uid_t);
32 /* AUTHOR(S)
33 /* Wietse Venema
34 /* IBM T.J. Watson Research
35 /* P.O. Box 704
36 /* Yorktown Heights, NY 10598, USA
38 /* Victor Duchovni
39 /* Morgan Stanley
40 /*--*/
41 #endif