16 lines
269 B
C
16 lines
269 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <errno.h>
|
||
|
#include <semanage/semanage.h>
|
||
|
|
||
|
#include "functions.c"
|
||
|
|
||
|
int main (int argc, char **argv) {
|
||
|
semanage_handle_t *sh = test_handle_create();
|
||
|
|
||
|
semanage_handle_destroy(sh);
|
||
|
|
||
|
exit(0);
|
||
|
}
|