diff options
author | rwatson <rwatson@FreeBSD.org> | 2003-10-25 03:50:44 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2003-10-25 03:50:44 +0000 |
commit | 973f5bee0937d46bedc40a0681180b5bdd9eaa12 (patch) | |
tree | 94f93030bdc9f5305d15df4c5f02c2117aa6f899 /sys/security | |
parent | a73d1ed688354d27d6037406e85aa81062cac750 (diff) | |
download | FreeBSD-src-973f5bee0937d46bedc40a0681180b5bdd9eaa12.zip FreeBSD-src-973f5bee0937d46bedc40a0681180b5bdd9eaa12.tar.gz |
Sort type declarations together.
Remove an excess carriage return.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories
Diffstat (limited to 'sys/security')
-rw-r--r-- | sys/security/mac/mac_internal.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/security/mac/mac_internal.h b/sys/security/mac/mac_internal.h index 9655565..da10550 100644 --- a/sys/security/mac/mac_internal.h +++ b/sys/security/mac/mac_internal.h @@ -50,6 +50,7 @@ SYSCTL_DECL(_security_mac_debug_counters); * MAC Framework global types and typedefs. */ LIST_HEAD(mac_policy_list_head, mac_policy_conf); +MALLOC_DECLARE(M_MACTEMP); /* * MAC Framework global variables. @@ -64,11 +65,6 @@ extern int mac_labelmbufs; #endif /* - * MAC Framework global types and constants. - */ -MALLOC_DECLARE(M_MACTEMP); - -/* * MAC Framework object/access counter primitives, conditionally * compiled. */ @@ -110,7 +106,6 @@ void mac_init_cred_label(struct label *label); int mac_internalize_cred_label(struct label *label, char *string); void mac_relabel_cred(struct ucred *cred, struct label *newlabel); - void mac_copy_pipe_label(struct label *src, struct label *dest); void mac_destroy_pipe_label(struct label *label); int mac_externalize_pipe_label(struct label *label, char *elements, |