commit | 7306727d1b2ed05afc91548ba374f7400a2389e3 | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Tue Jan 12 22:11:24 2010 +0100 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Tue Jan 12 22:11:24 2010 +0100 |
tree | 39cf4dff144f82dc9eaad30eae9c4fe67d405e4e | |
parent | 6c93b24ce9dfb5c3970178ca2545502a7830716c [diff] [blame] |
shell: split read builtin from ash Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/shell/match.h b/shell/match.h index 90597ee..98ff874 100644 --- a/shell/match.h +++ b/shell/match.h
@@ -1,5 +1,8 @@ /* match.h - interface to shell ##/%% matching code */ +#ifndef SHELL_MATCH_H +#define SHELL_MATCH_H 1 + PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN typedef char *(*scan_t)(char *string, char *match, bool match_at_left); @@ -24,3 +27,5 @@ } POP_SAVED_FUNCTION_VISIBILITY + +#endif