link.h 448 B

123456789101112131415161718192021
  1. /* Authors: Jason Tang <jtang@tresys.com>
  2. * Joshua Brindle <jbrindle@tresys.com>
  3. * Karl MacMillan <kmacmillan@mentalrootkit.com>
  4. */
  5. #ifndef _SEPOL_POLICYDB_LINK_H
  6. #define _SEPOL_POLICYDB_LINK_H
  7. #include <sepol/handle.h>
  8. #include <sepol/errcodes.h>
  9. #include <sepol/policydb/policydb.h>
  10. #include <stddef.h>
  11. extern int link_modules(sepol_handle_t * handle,
  12. policydb_t * b, policydb_t ** mods, int len,
  13. int verbose);
  14. #endif