pointless whitespace/comment fixes, no code changes
[oweals/busybox.git] / shell / match.h
index 863f525397694ceac1611b3bf916010084972bb4..3fc4de340c7f53996bad658d6d10b97f6a0ff222 100644 (file)
@@ -1,5 +1,7 @@
 /* match.h - interface to shell ##/%% matching code */
 
+PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
+
 typedef char *(*scan_t)(char *string, char *match, bool zero);
 
 char *scanleft(char *string, char *match, bool zero);
@@ -20,3 +22,5 @@ static inline scan_t pick_scan(char op1, char op2, bool *zero)
                return op1 == op2 ? scanleft : scanright;
        }
 }
+
+POP_SAVED_FUNCTION_VISIBILITY