nautilus-3.6.3/src/nautilus-self-check-functions.c

No issues found

 1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
 2 
 3 /*
 4  * Nautilus
 5  *
 6  * Copyright (C) 1999, 2000 Eazel, Inc.
 7  *
 8  * Nautilus 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  * Nautilus 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 License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  * Author: Darin Adler <darin@bentspoon.com>
23  */
24    
25 /* nautilus-self-check-functions.c: Wrapper for all self check functions
26  * in Nautilus proper.
27  */
28 
29 #include <config.h>
30 
31 #if ! defined (NAUTILUS_OMIT_SELF_CHECK)
32 
33 #include "nautilus-self-check-functions.h"
34 
35 void nautilus_run_self_checks(void)
36 {
37 	NAUTILUS_FOR_EACH_SELF_CHECK_FUNCTION (NAUTILUS_CALL_SELF_CHECK_FUNCTION)
38 }
39 
40 #endif /* ! NAUTILUS_OMIT_SELF_CHECK */