system.c 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /***************************************************************************
  2. * __ __ _ ___________ *
  3. * \ \ / /| |____ ____| *
  4. * \ \ / / | | | | *
  5. * \ \ /\ / / | | | | *
  6. * \ \/ \/ / | | | | *
  7. * \ /\ / | | | | *
  8. * \/ \/ |_| |_| *
  9. * *
  10. * Wiimms ISO Tools *
  11. * https://wit.wiimm.de/ *
  12. * *
  13. ***************************************************************************
  14. * *
  15. * This file is part of the WIT project. *
  16. * Visit https://wit.wiimm.de/ for project details and sources. *
  17. * *
  18. * Copyright (c) 2009-2021 by Dirk Clemens <wiimm@wiimm.de> *
  19. * *
  20. ***************************************************************************
  21. * *
  22. * This program is free software; you can redistribute it and/or modify *
  23. * it under the terms of the GNU General Public License as published by *
  24. * the Free Software Foundation; either version 2 of the License, or *
  25. * (at your option) any later version. *
  26. * *
  27. * This program is distributed in the hope that it will be useful, *
  28. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  29. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  30. * GNU General Public License for more details. *
  31. * *
  32. * See file gpl-2.0.txt or http://www.gnu.org/licenses/gpl-2.0.txt *
  33. * *
  34. ***************************************************************************/
  35. #include "dclib/dclib-system.h"
  36. #ifndef PRINT_SYSTEM_SETTINGS
  37. int main ( int argc, char ** argv )
  38. {
  39. dclibPrintSystem(stdout);
  40. return 0;
  41. }
  42. #endif