From 7b5185bd4c846fe62daaf852a72d061dff3af9f0 Mon Sep 17 00:00:00 2001 From: jedgar Date: Thu, 21 Feb 2002 23:12:25 +0000 Subject: static'ize and declare functions Reviewed by: rwatson Obtained from: TrustedBSD Project --- lib/libc/posix1e/acl_from_text.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/libc/posix1e') diff --git a/lib/libc/posix1e/acl_from_text.c b/lib/libc/posix1e/acl_from_text.c index d391089..ffceaa9 100644 --- a/lib/libc/posix1e/acl_from_text.c +++ b/lib/libc/posix1e/acl_from_text.c @@ -40,6 +40,10 @@ #include "acl_support.h" +static acl_tag_t acl_string_to_tag(char *tag, char *qualifier); +static char *string_skip_whitespace(char *string); +static void string_trim_trailing_whitespace(char *string); + static char * string_skip_whitespace(char *string) { @@ -72,7 +76,7 @@ string_trim_trailing_whitespace(char *string) return; } -acl_tag_t +static acl_tag_t acl_string_to_tag(char *tag, char *qualifier) { -- cgit v1.1