* libltdl/loaders/preopen.c: Don't allow lt_dlopen if the
[libtool.git] / ltmain.c
blob594d48b868e07d7afaaa7781ce180782c131eed6
1 /* ltmain.c - C implementation of GNU Libtool
2 * Copyright (C) 1998-1999 Free Software Foundation, Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
7 * any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this software; see the file COPYING. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301 USA
19 * As a special exception to the GNU General Public License, if you
20 * distribute this file as part of a program that contains a
21 * configuration script generated by Autoconf, you may include it under
22 * the same distribution terms that you use for the rest of that program.
25 #include <stdio.h> /* printf */
26 #include <stdlib.h> /* exit */
28 int
29 main (argc, argv)
30 int argc;
31 char **argv;
33 printf ("hello, world!\n");
34 exit (0);