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 16 extern int link_modules(sepol_handle_t * handle, 17 policydb_t * b, policydb_t ** mods, int len, 18 int verbose); 19 20 #endif 21