[FIX] x200 X work under new xorg, and my red-track can scroll.
[arrow.git] / testforge / list / client.c
blobda625673859e304873a6edc79c514ac388f30466
1 /* copyleft (C) GPL3 {{{2
2 * Filename: serv.c
4 * Author: arrow <arrow_zhang@sdc.sercomm.com>
5 * Created at: Mon 20 Aug 2007 07:05:37 PM CST
6 * }}}*/
7 /*header files {{{1*/
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include "common.h"
11 /*}}}*/
13 /*declaration {{{1*/
14 /*}}}*/
16 /*functions {{{1*/
17 int client(int val)
19 sbup("I'm in client, val = %d\n", val);
20 return 0;
23 struct arrow_t _client = {
24 .name = "test ok",
25 .fun = client,
28 int __init init_client(void)
30 test_register(&_client);
31 return 0;
34 void __exit exit_client(void)
36 test_unregister(&_client);
39 module_init(init_client);
40 module_exit(exit_client);
42 /* vim:fdm=marker:ts=8:ft=c:norl:fdl=1:
43 * }}}*/