VirtualBox

source: vbox/trunk/src/VBox/Additions/linux/installer/test.c@ 33944

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
18MODULE_DESCRIPTION("VirtualBox Guest Additions configuration test module");
19MODULE_AUTHOR("Oracle Corporation");
20MODULE_LICENSE("GPL");
21
22static int init(void)
23{
24 return 0;
25}
26
27static void fini(void) {}
28
29module_init(init);
30module_exit(fini);
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette