xref: /libCEED/examples/python/qfunctions/qfunctions.c (revision 7b3ff0698626cc2e5ce463afc10290072fd55c90)
1*7b3ff069SJeremy L Thompson // Copyright (c) 2017-2025, Lawrence Livermore National Security, LLC and other CEED contributors.
2*7b3ff069SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3*7b3ff069SJeremy L Thompson //
4*7b3ff069SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
5*7b3ff069SJeremy L Thompson //
6*7b3ff069SJeremy L Thompson // This file is part of CEED:  http://github.com/ceed
7*7b3ff069SJeremy L Thompson 
8*7b3ff069SJeremy L Thompson #include <ceed.h>
9*7b3ff069SJeremy L Thompson // -----------------------------------------------------------------------------
10*7b3ff069SJeremy L Thompson // Redefine QFunction Macro
11*7b3ff069SJeremy L Thompson // -----------------------------------------------------------------------------
12*7b3ff069SJeremy L Thompson #undef CEED_QFUNCTION
13*7b3ff069SJeremy L Thompson #define CEED_QFUNCTION(name) extern int name
14*7b3ff069SJeremy L Thompson 
15*7b3ff069SJeremy L Thompson // -----------------------------------------------------------------------------
16*7b3ff069SJeremy L Thompson // QFunction Sources
17*7b3ff069SJeremy L Thompson // -----------------------------------------------------------------------------
18*7b3ff069SJeremy L Thompson #include "ex1-volume.h"
19*7b3ff069SJeremy L Thompson #include "ex2-surface.h"
20*7b3ff069SJeremy L Thompson #include "ex3-volume.h"
21*7b3ff069SJeremy L Thompson 
22*7b3ff069SJeremy L Thompson // -----------------------------------------------------------------------------
23