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#ifdef __cplusplus 17extern "C" { 18#endif 19 20extern 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