Sign in
◑
Theme
third-party-mirror
/
backupdr
/
0483ca37f380e93af85d49b08d65a6d89f6ddd39
/
.
/
module-init-tools-3.12-pre2
/
tests
/
data
/
src
/
complex_c.c
blob: abe4bea6afdbd0a2e26d01b657946c85f605b6a0 [
file
]
/* A depends on B, C and D. B depends on E. C depends on B and E. D
depends on B. */
#include
"module.h"
int
c
;
extern
int
b
,
e
;
static
void
foo
(
void
)
{
c
=
b
=
e
=
0
;
}
EXPORT_SYMBOL
(
c
);