1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /***************************************************************************
- * __ __ _ ___________ *
- * \ \ / /| |____ ____| *
- * \ \ / / | | | | *
- * \ \ /\ / / | | | | *
- * \ \/ \/ / | | | | *
- * \ /\ / | | | | *
- * \/ \/ |_| |_| *
- * *
- * Wiimms ISO Tools *
- * https://wit.wiimm.de/ *
- * *
- ***************************************************************************
- * *
- * This file is part of the WIT project. *
- * Visit https://wit.wiimm.de/ for project details and sources. *
- * *
- * Copyright (c) 2009-2021 by Dirk Clemens <wiimm@wiimm.de> *
- * *
- ***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * See file gpl-2.0.txt or http://www.gnu.org/licenses/gpl-2.0.txt *
- * *
- ***************************************************************************/
- #include "dclib/dclib-system.h"
- #ifndef PRINT_SYSTEM_SETTINGS
- int main ( int argc, char ** argv )
- {
- dclibPrintSystem(stdout);
- return 0;
- }
- #endif
|