diff options
Diffstat (limited to 'shell/match.h')
-rw-r--r-- | shell/match.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/match.h b/shell/match.h index 863f52539..3fc4de340 100644 --- a/shell/match.h +++ b/shell/match.h | |||
@@ -1,5 +1,7 @@ | |||
1 | /* match.h - interface to shell ##/%% matching code */ | 1 | /* match.h - interface to shell ##/%% matching code */ |
2 | 2 | ||
3 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN | ||
4 | |||
3 | typedef char *(*scan_t)(char *string, char *match, bool zero); | 5 | typedef char *(*scan_t)(char *string, char *match, bool zero); |
4 | 6 | ||
5 | char *scanleft(char *string, char *match, bool zero); | 7 | char *scanleft(char *string, char *match, bool zero); |
@@ -20,3 +22,5 @@ static inline scan_t pick_scan(char op1, char op2, bool *zero) | |||
20 | return op1 == op2 ? scanleft : scanright; | 22 | return op1 == op2 ? scanleft : scanright; |
21 | } | 23 | } |
22 | } | 24 | } |
25 | |||
26 | POP_SAVED_FUNCTION_VISIBILITY | ||