genode/repos/dde_linux/src/drivers/usb_net_stat/main.cc

20 lines
364 B
C++

/*
* \brief Startup USB driver library
* \author Sebastian Sumpf
* \date 2013-02-20
*/
/*
* Copyright (C) 2013-2014 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
int main()
{
extern void start_usb_driver();
start_usb_driver();
return 0;
}