xref: /aosp_15_r20/external/selinux/libsepol/include/sepol/policydb/link.h (revision 2d543d20722ada2425b5bdab9d0d1d29470e7bba)
1 /* Authors: Jason Tang <[email protected]>
2  *	    Joshua Brindle <[email protected]>
3  *          Karl MacMillan <[email protected]>
4  */
5 
6 #ifndef _SEPOL_POLICYDB_LINK_H
7 #define _SEPOL_POLICYDB_LINK_H
8 
9 #include <sepol/handle.h>
10 #include <sepol/errcodes.h>
11 #include <sepol/policydb/policydb.h>
12 
13 
14 #include <stddef.h>
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 extern int link_modules(sepol_handle_t * handle,
21 			policydb_t * b, policydb_t ** mods, int len,
22 			int verbose);
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif
29