xref: /libCEED/examples/python/qfunctions/qfunctions.c (revision 9ba83ac0e4b1fca39d6fa6737a318a9f0cbc172d)
1*9ba83ac0SJeremy L Thompson // Copyright (c) 2017-2026, Lawrence Livermore National Security, LLC and other CEED contributors.
27b3ff069SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
37b3ff069SJeremy L Thompson //
47b3ff069SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
57b3ff069SJeremy L Thompson //
67b3ff069SJeremy L Thompson // This file is part of CEED:  http://github.com/ceed
77b3ff069SJeremy L Thompson 
87b3ff069SJeremy L Thompson #include <ceed.h>
97b3ff069SJeremy L Thompson // -----------------------------------------------------------------------------
107b3ff069SJeremy L Thompson // Redefine QFunction Macro
117b3ff069SJeremy L Thompson // -----------------------------------------------------------------------------
127b3ff069SJeremy L Thompson #undef CEED_QFUNCTION
137b3ff069SJeremy L Thompson #define CEED_QFUNCTION(name) extern int name
147b3ff069SJeremy L Thompson 
157b3ff069SJeremy L Thompson // -----------------------------------------------------------------------------
167b3ff069SJeremy L Thompson // QFunction Sources
177b3ff069SJeremy L Thompson // -----------------------------------------------------------------------------
187b3ff069SJeremy L Thompson #include "ex1-volume.h"
197b3ff069SJeremy L Thompson #include "ex2-surface.h"
207b3ff069SJeremy L Thompson #include "ex3-volume.h"
217b3ff069SJeremy L Thompson 
227b3ff069SJeremy L Thompson // -----------------------------------------------------------------------------
23