Tizen 2.0 Release
[external/module-init-tools.git] / tests / data / src / loop1.c
1 /* Part of a simple module loop */
2 #include "module.h"
3
4 extern int from_loop2;
5
6 int from_loop1;
7
8 EXPORT_SYMBOL(from_loop1);
9
10 static void foo(void)
11 {
12         from_loop1 = from_loop2;
13 }