mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-13 04:34:04 +02:00
.gitlab-ci
docs
fuzzing
gio
glib
gmodule
tests
cxx.cpp
meson.build
AUTHORS
COPYING
gmodule-ar.c
gmodule-dl.c
gmodule-win32.c
gmodule.c
gmodule.h
gmodule.rc.in
gmoduleconf.h.in
meson.build
gobject
gthread
m4macros
po
subprojects
tests
.clang-format
.dir-locals.el
.editorconfig
.gitattributes
.gitignore
.gitlab-ci.yml
AUTHORS
CONTRIBUTING.md
COPYING
HACKING
INSTALL.in
NEWS
NEWS.pre-1-3
README
README.md
README.rationale
README.win32
README.win32.md
SECURITY.md
check-abis.sh
clang-format-diff.py
glib-gettextize.in
glib.doap
glib.supp
meson.build
meson_options.txt
msvc_recommended_pragmas.h
template-tap.test.in
template.test.in
27 lines
914 B
C++
27 lines
914 B
C++
![]() |
/* Copyright (C) 2001 Sebastian Wilhelmi <wilhelmi@google.com>
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2.1 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library 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
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public License
|
||
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
/* A trivial C++ program to be compiled in C++ mode, which
|
||
|
* smoketests that the GModule headers are valid C++ headers. */
|
||
|
|
||
|
#include <gmodule.h>
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|