Sort type declarations together.

Remove an excess carriage return.

Obtained from:	TrustedBSD Project
Sponsored by:	DARPA, Network Associates Laboratories
This commit is contained in:
Robert Watson 2003-10-25 03:50:44 +00:00
parent 17e02bb39b
commit 138f64b698
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121490

View file

@ -50,6 +50,7 @@ SYSCTL_DECL(_security_mac_debug_counters);
* MAC Framework global types and typedefs. * MAC Framework global types and typedefs.
*/ */
LIST_HEAD(mac_policy_list_head, mac_policy_conf); LIST_HEAD(mac_policy_list_head, mac_policy_conf);
MALLOC_DECLARE(M_MACTEMP);
/* /*
* MAC Framework global variables. * MAC Framework global variables.
@ -63,11 +64,6 @@ extern int mac_enforce_vm;
extern int mac_labelmbufs; extern int mac_labelmbufs;
#endif #endif
/*
* MAC Framework global types and constants.
*/
MALLOC_DECLARE(M_MACTEMP);
/* /*
* MAC Framework object/access counter primitives, conditionally * MAC Framework object/access counter primitives, conditionally
* compiled. * compiled.
@ -110,7 +106,6 @@ void mac_init_cred_label(struct label *label);
int mac_internalize_cred_label(struct label *label, char *string); int mac_internalize_cred_label(struct label *label, char *string);
void mac_relabel_cred(struct ucred *cred, struct label *newlabel); void mac_relabel_cred(struct ucred *cred, struct label *newlabel);
void mac_copy_pipe_label(struct label *src, struct label *dest); void mac_copy_pipe_label(struct label *src, struct label *dest);
void mac_destroy_pipe_label(struct label *label); void mac_destroy_pipe_label(struct label *label);
int mac_externalize_pipe_label(struct label *label, char *elements, int mac_externalize_pipe_label(struct label *label, char *elements,