chiark / gitweb /
b861e335442f4b6dea2c033e8eda429619479f6a
[elogind.git] / src / systemd / _sd-common.h
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
43 #ifndef _sd_stringify
44 #  define _sd_xstringify(x) #x
45 #  define _sd_stringify(x) _sd_xstringify(x)
46 #endif
47
48 #endif