No issues found
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
2
3 eel-lib-self-check-functions.c: Wrapper for all self check functions
4 in Eel proper.
5
6 Copyright (C) 2000 Eazel, Inc.
7
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Library General Public License as
10 published by the Free Software Foundation; either version 2 of the
11 License, or (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Library General Public License for more details.
17
18 You should have received a copy of the GNU Library General Public
19 License along with this program; if not, write to the
20 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.
22
23 Author: Darin Adler <darin@eazel.com>
24 */
25
26 #include <config.h>
27
28 #if ! defined (EEL_OMIT_SELF_CHECK)
29
30 #include "eel-lib-self-check-functions.h"
31
32 void
33 eel_run_lib_self_checks (void)
34 {
35 EEL_LIB_FOR_EACH_SELF_CHECK_FUNCTION (EEL_CALL_SELF_CHECK_FUNCTION)
36 }
37
38 #endif /* ! EEL_OMIT_SELF_CHECK */