diff options
author | jedgar <jedgar@FreeBSD.org> | 2002-02-21 23:12:25 +0000 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2002-02-21 23:12:25 +0000 |
commit | 7b5185bd4c846fe62daaf852a72d061dff3af9f0 (patch) | |
tree | dcf8026b12461666b0a400ab8598b720c3186062 /lib/libc | |
parent | 23fcffffc97fe63a1b023e4e4ed26f6733a72c3b (diff) | |
download | FreeBSD-src-7b5185bd4c846fe62daaf852a72d061dff3af9f0.zip FreeBSD-src-7b5185bd4c846fe62daaf852a72d061dff3af9f0.tar.gz |
static'ize and declare functions
Reviewed by: rwatson
Obtained from: TrustedBSD Project
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/posix1e/acl_from_text.c | 6 |
1 files changed, 5 insertions, 1 deletions
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) { |