mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
cc05b877a2
first commit acl to github
23 lines
308 B
C
23 lines
308 B
C
#ifndef __ACL_CHROOT_UID_H_INCLUDED__
|
|
#define __ACL_CHROOT_UID_H_INCLUDED__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "../acl_define.h"
|
|
#ifdef ACL_UNIX
|
|
|
|
/* External interface. */
|
|
|
|
extern void acl_chroot_uid(const char *, const char *);
|
|
|
|
#endif /* ACL_UNIX */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|