Warning, file /frameworks/kwindowsystem/autotests/fixx11h_test.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* This file is part of the KDE libraries 0002 0003 SPDX-FileCopyrightText: 2009 David Faure <faure@kde.org> 0004 SPDX-FileCopyrightText: 2009 Maciej Mrozowski <reavertm@poczta.fm> 0005 0006 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0007 */ 0008 0009 // From https://bugs.gentoo.org/show_bug.cgi?id=263823#c8 0010 #include <X11/Xlib.h> 0011 #include <fixx11h.h> 0012 0013 static Bool foo() 0014 { 0015 return True; 0016 } 0017 0018 #include <X11/Xdefs.h> 0019 0020 int main(int, char **) 0021 { 0022 Bool b = foo(); 0023 return b; 0024 }