xref: /netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/__main.di (revision 4c3eb207d36f67d31994830c0a694161fc1ca39b)
1627f7eb2Smrg/* GDC -- D front-end for GCC
2*4c3eb207Smrg   Copyright (C) 2018-2020 Free Software Foundation, Inc.
3627f7eb2Smrg
4627f7eb2Smrg   GCC is free software; you can redistribute it and/or modify it under
5627f7eb2Smrg   the terms of the GNU General Public License as published by the Free
6627f7eb2Smrg   Software Foundation; either version 3, or (at your option) any later
7627f7eb2Smrg   version.
8627f7eb2Smrg
9627f7eb2Smrg   GCC is distributed in the hope that it will be useful, but WITHOUT ANY
10627f7eb2Smrg   WARRANTY; without even the implied warranty of MERCHANTABILITY or
11627f7eb2Smrg   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12627f7eb2Smrg   for more details.
13627f7eb2Smrg
14627f7eb2Smrg   You should have received a copy of the GNU General Public License
15627f7eb2Smrg   along with GCC; see the file COPYING3.  If not see
16627f7eb2Smrg   <http://www.gnu.org/licenses/>.
17627f7eb2Smrg*/
18627f7eb2Smrg
19627f7eb2Smrg/* This module provides the D main() function supplied by the user's program.  */
20627f7eb2Smrg
21627f7eb2Smrgmodule __main;
22627f7eb2Smrg
23627f7eb2Smrgint main(char[][])
24627f7eb2Smrg{
25627f7eb2Smrg    return 0;
26627f7eb2Smrg}
27