No issues found
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
2
3 nautilus-lib-self-check-functions.c: Wrapper for all self check functions
4 in Nautilus 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 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 General Public License for more details.
17
18 You should have received a copy of the GNU 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@bentspoon.com>
24 */
25
26 #include <config.h>
27
28 #if ! defined (NAUTILUS_OMIT_SELF_CHECK)
29
30 #include "nautilus-lib-self-check-functions.h"
31
32 void
33 nautilus_run_lib_self_checks (void)
34 {
35 NAUTILUS_LIB_FOR_EACH_SELF_CHECK_FUNCTION (EEL_CALL_SELF_CHECK_FUNCTION)
36 }
37
38 #endif /* ! NAUTILUS_OMIT_SELF_CHECK */