• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Authors: Jason Tang <jtang@tresys.com>
2  *	    Joshua Brindle <jbrindle@tresys.com>
3  *          Karl MacMillan <kmacmillan@mentalrootkit.com>
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 #include <sys/cdefs.h>
16 
17 __BEGIN_DECLS
18 
19 extern int link_modules(sepol_handle_t * handle,
20 			policydb_t * b, policydb_t ** mods, int len,
21 			int verbose);
22 
23 __END_DECLS
24 #endif
25