r15281: A few updates for consistency's sake
[Samba/aatanasov.git] / source4 / include / includes.h
blob6252a59c2f6ababad54f01dba539617f04eb8b10
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>
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 2 of the License, or
12 (at your option) any later version.
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.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #ifndef NO_CONFIG_H /* for some tests */
25 #include "config.h"
26 #endif
28 #include "local.h"
30 #ifdef __GNUC__
31 /** gcc attribute used on function parameters so that it does not emit
32 * warnings about them being unused. **/
33 # define UNUSED(param) param __attribute__ ((unused))
34 #else
35 # define UNUSED(param) param
36 /** Feel free to add definitions for other compilers here. */
37 #endif
39 #ifndef _PUBLIC_
40 #ifdef HAVE_VISIBILITY_ATTR
41 # define _PUBLIC_ __attribute__((visibility("default")))
42 #else
43 # define _PUBLIC_
44 #endif
45 #endif
47 #ifndef PRINTF_ATTRIBUTE
48 #if __GNUC__ >= 3
49 /** Use gcc attribute to check printf fns. a1 is the 1-based index of
50 * the parameter containing the format, and a2 the index of the first
51 * argument. Note that some gcc 2.x versions don't handle this
52 * properly **/
53 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
54 #else
55 #define PRINTF_ATTRIBUTE(a1, a2)
56 #endif
57 #endif
59 #ifndef NORETURN_ATTRIBUTE
60 #if (__GNUC__ >= 3)
61 #define NORETURN_ATTRIBUTE __attribute__ ((noreturn))
62 #else
63 #define NORETURN_ATTRIBUTE
64 #endif
65 #endif
67 #define _GNU_SOURCE /* Use GNU extensions */
69 /* mark smb_panic() as noreturn, so static analysers know that it is
70 used like abort */
71 _PUBLIC_ void smb_panic(const char *why) NORETURN_ATTRIBUTE;
73 #include <sys/types.h>
74 #include <stdio.h>
75 #include <stdlib.h>
76 #include <stddef.h>
77 #include <sys/time.h>
79 #ifdef HAVE_STRING_H
80 #include <string.h>
81 #endif
83 #include <signal.h>
84 #include <errno.h>
86 #ifdef HAVE_STDARG_H
87 #include <stdarg.h>
88 #else
89 #include <varargs.h>
90 #endif
92 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
93 #include "lib/replace/replace.h"
95 /* Lists, trees, caching, database... */
96 #include "talloc/talloc.h"
97 #include "core.h"
98 #include "charset/charset.h"
99 #include "util/util.h"
100 #include "param/param.h"
101 #include "librpc/gen_ndr/misc.h"
103 struct smbcli_tree;
104 #include "libcli/util/error.h"
106 /* String routines */
107 #include "util/safe_string.h"
109 #if 0
110 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
111 #define TALLOC_ABORT(reason) smb_panic(reason)
112 #endif
114 #endif /* _INCLUDES_H */