commit 1c326effa6e64184a8b42eb9ec3e61c9cc2a839c
parent 6114c17aa904bf2174af651902e8b9d4bd914287
Author: Drew DeVault <sir@cmpwn.com>
Date: Wed, 20 Oct 2021 10:17:51 +0200
fnmatch: remove export on internal function
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fnmatch/fnmatch.ha b/fnmatch/fnmatch.ha
@@ -109,7 +109,7 @@ fn fnmatch_pathname(
// after the last star produce exact matches and then proceed to greedily match
// everything in between. Because of the greedy property this algorithm does not
// have exponential corner cases.
-export fn fnmatch_internal(
+fn fnmatch_internal(
pattern: str,
string: str,
fl: flags,