add gitignore file
[arrow.git] / common.h
blobede2d3c1899a8ae8cabbf5a80d8569e2fe3cf81f
1 /*
2 * Filename: common.h
3 * Created at: Mon 20 Aug 2007 07:13:20 PM CST
4 *******************************************************************************/
5 #ifndef _R_COMMON_H_
6 #define _R_COMMON_H_
8 #include <linux/list.h>
9 #define sbup printk
10 struct arrow_t {
11 char name[16];
12 int (*fun)(int val);
13 struct list_head list;
16 int test_unregister(struct arrow_t *del);
17 int test_register(struct arrow_t *new);
19 #endif