]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/systemd/_sd-common.h
bus: introduce concept of a default bus for each thread and make use of it everywhere
[thirdparty/systemd.git] / src / systemd / _sd-common.h
CommitLineData
aacf3b48
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3#ifndef foosdcommonhfoo
4#define foosdcommonhfoo
5
6/***
7 This file is part of systemd.
8
9 Copyright 2013 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU Lesser General Public License as published by
13 the Free Software Foundation; either version 2.1 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 Lesser General Public License for more details.
20
21 You should have received a copy of the GNU Lesser General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
25/* This is a private header, never even think of including this directly! */
26
27#ifndef _sd_printf_
28# if __GNUC__ >= 4
29# define _sd_printf_(a,b) __attribute__ ((format (printf, a, b)))
30# else
31# define _sd_printf_(a,b)
32# endif
33#endif
34
35#ifndef _sd_sentinel_
36# define _sd_sentinel_ __attribute__((sentinel))
37#endif
38
39#ifndef _sd_packed_
40# define _sd_packed_ __attribute__((packed))
41#endif
42
0095c454
LP
43#ifndef _SD_STRINGIFY
44# define _SD_XSTRINGIFY(x) #x
45# define _SD_STRINGIFY(x) _SD_XSTRINGIFY(x)
46#endif
47
48#ifndef _SD_BEGIN_DECLARATIONS
49# ifdef __cplusplus
50# define _SD_BEGIN_DECLARATIONS \
51 extern "C" { \
52 struct __useless_struct_to_allow_trailing_semicolon__
53# else
54# define _SD_BEGIN_DECLARATIONS \
55 struct __useless_struct_to_allow_trailing_semicolon__
56# endif
57#endif
58
59#ifndef _SD_END_DECLARATIONS
60# ifdef __cplusplus
61# define _SD_END_DECLARATIONS \
62 } \
63 struct __useless_struct_to_allow_trailing_semicolon__
64# else
65# define _SD_END_DECLARATIONS \
66 struct __useless_struct_to_allow_trailing_semicolon__
67# endif
aacf3b48
LP
68#endif
69
70#endif