mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
23 lines
320 B
C
23 lines
320 B
C
#ifndef ACL_CHROOT_UID_INCLUDE_H
|
|
#define ACL_CHROOT_UID_INCLUDE_H
|
|
|
|
#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
|
|
|