aboutsummaryrefslogtreecommitdiffstats
path: root/libselinux/src/freecon.c
blob: 3ec4fe2b8fc49bc9af0c8d440c6aed2397d5ee9b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <unistd.h>
#include "selinux_internal.h"
#include <stdlib.h>
#include <errno.h>

void freecon(security_context_t con)
{
	free(con);
}

hidden_def(freecon)