aboutsummaryrefslogtreecommitdiff
path: root/include/linux/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/parser.h')
-rw-r--r--include/linux/parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/parser.h b/include/linux/parser.h
index 26b2bdfcaf0..cc554ca8bc7 100644
--- a/include/linux/parser.h
+++ b/include/linux/parser.h
@@ -14,7 +14,7 @@ struct match_token {
const char *pattern;
};
-typedef struct match_token match_table_t[];
+typedef const struct match_token match_table_t[];
/* Maximum number of arguments that match_token will find in a pattern */
enum {MAX_OPT_ARGS = 3};
@@ -29,5 +29,5 @@ int match_token(char *, match_table_t table, substring_t args[]);
int match_int(substring_t *, int *result);
int match_octal(substring_t *, int *result);
int match_hex(substring_t *, int *result);
-void match_strcpy(char *, const substring_t *);
+size_t match_strlcpy(char *, const substring_t *, size_t);
char *match_strdup(const substring_t *);