a01b414513eb6bbce065375fba100c2a0116f804
[collectd.git] / src / standards.h
1 /**
2  * collectd - src/collectd.h
3  * Copyright (C) 2009  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #ifndef COLLECTD_STANDARDS_H
23 #define COLLECTD_STANDARDS_H 1
24
25 # ifndef _ISOC99_SOURCE
26 #  define _ISOC99_SOURCE
27 # endif
28 # ifndef _POSIX_SOURCE
29 #  define _POSIX_SOURCE
30 # endif
31 # ifndef _POSIX_C_SOURCE
32 #  define _POSIX_C_SOURCE 200112L
33 # endif
34 # ifndef _XOPEN_SOURCE
35 #  define _XOPEN_SOURCE 600
36 # endif
37 # ifndef _REENTRANT
38 #  define _REENTRANT
39 # endif
40
41 #if 0
42 /* Disable non-standard extensions */
43 # ifdef _BSD_SOURCE
44 #  undef _BSD_SOURCE
45 # endif
46 # ifdef _SVID_SOURCE
47 #  undef _SVID_SOURCE
48 # endif
49 # ifdef _GNU_SOURCE
50 #  undef _GNU_SOURCE
51 # endif
52 #endif /* 0 */
53
54 #endif /* COLLECTD_STANDARDS_H */