Last change
on this file since 33944 was 31661, checked in by vboxsync, 14 years ago |
Additions header fixes
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id Revision
|
File size:
899 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * VirtualBox Guest Additions installer test module for Linux
|
---|
3 | *
|
---|
4 | * Copyright (C) 2006-2007 Oracle Corporation
|
---|
5 | *
|
---|
6 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
7 | * available from http://www.virtualbox.org. This file is free software;
|
---|
8 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
9 | * General Public License (GPL) as published by the Free Software
|
---|
10 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
11 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
12 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
13 | */
|
---|
14 |
|
---|
15 | #include <linux/init.h>
|
---|
16 | #include <linux/module.h>
|
---|
17 |
|
---|
18 | MODULE_DESCRIPTION("VirtualBox Guest Additions configuration test module");
|
---|
19 | MODULE_AUTHOR("Oracle Corporation");
|
---|
20 | MODULE_LICENSE("GPL");
|
---|
21 |
|
---|
22 | static int init(void)
|
---|
23 | {
|
---|
24 | return 0;
|
---|
25 | }
|
---|
26 |
|
---|
27 | static void fini(void) {}
|
---|
28 |
|
---|
29 | module_init(init);
|
---|
30 | module_exit(fini);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.