r25265: Move attribute definitions to lib/util.
[jra/samba/.git] / source4 / include / includes.h
1 #ifndef _INCLUDES_H
2 #define _INCLUDES_H
3 /* 
4    Unix SMB/CIFS implementation.
5    Machine customisation and include handling
6    Copyright (C) Andrew Tridgell 1994-1998
7    Copyright (C) 2002 by Martin Pool <mbp@samba.org>
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 #include "lib/replace/replace.h"
24
25 /* make sure we have included the correct config.h */
26 #ifndef NO_CONFIG_H /* for some tests */
27 #ifndef CONFIG_H_IS_FROM_SAMBA
28 #error "make sure you have removed all config.h files from standalone builds!"
29 #error "the included config.h isn't from samba!"
30 #endif
31 #endif /* NO_CONFIG_H */
32
33 #include "local.h"
34
35 #ifndef PRINTF_ATTRIBUTE
36 #if __GNUC__ >= 3
37 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
38  * the parameter containing the format, and a2 the index of the first
39  * argument. Note that some gcc 2.x versions don't handle this
40  * properly **/
41 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
42 #else
43 #define PRINTF_ATTRIBUTE(a1, a2)
44 #endif
45 #endif
46
47 #include "system/time.h"
48 #include "system/wait.h"
49
50 #ifndef _PRINTF_ATTRIBUTE
51 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
52 #endif
53
54 /* Lists, trees, caching, database... */
55 #include <stdlib.h>
56 #include <stdbool.h>
57 #include <talloc.h>
58 #include "libcli/util/nt_status.h"
59 #include "charset/charset.h"
60 #include "util/util.h"
61 #include "librpc/gen_ndr/misc.h"
62
63 typedef bool BOOL;
64
65 #define False false
66 #define True true
67
68 struct smbcli_tree;
69 #include "libcli/util/error.h"
70
71 /* String routines */
72 #include "util/safe_string.h"
73
74 #if 0
75 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
76 #define TALLOC_ABORT(reason) smb_panic(reason)
77 #endif
78
79 #endif /* _INCLUDES_H */