~ubuntu-core-dev/module-init-tools/ubuntu

1
2
3
4
5
6
7
8
9
10
11
12
13
/* Part of a simple module loop */
#include "module.h"

extern int from_loop2;

int from_loop1;

EXPORT_SYMBOL(from_loop1);

static void foo(void)
{
	from_loop1 = from_loop2;
}