summaryrefslogtreecommitdiffstats
path: root/include/linux/extable.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/extable.h')
-rw-r--r--include/linux/extable.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/extable.h b/include/linux/extable.h
index 7effea4b257d..28addad0dda7 100644
--- a/include/linux/extable.h
+++ b/include/linux/extable.h
@@ -2,13 +2,14 @@
2#define _LINUX_EXTABLE_H 2#define _LINUX_EXTABLE_H
3 3
4#include <linux/stddef.h> /* for NULL */ 4#include <linux/stddef.h> /* for NULL */
5#include <linux/types.h>
5 6
6struct module; 7struct module;
7struct exception_table_entry; 8struct exception_table_entry;
8 9
9const struct exception_table_entry * 10const struct exception_table_entry *
10search_extable(const struct exception_table_entry *first, 11search_extable(const struct exception_table_entry *base,
11 const struct exception_table_entry *last, 12 const size_t num,
12 unsigned long value); 13 unsigned long value);
13void sort_extable(struct exception_table_entry *start, 14void sort_extable(struct exception_table_entry *start,
14 struct exception_table_entry *finish); 15 struct exception_table_entry *finish);