waf: disable-python - don't include python.h in test_headers.c
[sfrench/samba-autobuild/.git] / testsuite / headers / test_headers.c
1 /*
2    Unix SMB/CIFS implementation.
3
4    Copyright (C) Andrew Tridgell                2011
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 /*
21   this tests that all of our public headers will build
22  */
23
24 #define _GNU_SOURCE 1
25
26 #ifdef HAVE_PYTHON_H
27 # include <Python.h>
28 #endif
29 #include <stdio.h>
30 #include <unistd.h>
31 #include <stdlib.h>
32 #include <stdint.h>
33 #include <stdbool.h>
34
35 /* pre-include some of the public headers to avoid ordering issues */
36 #include "core/ntstatus.h"
37
38 /* include all our public headers */
39 #include "test_headers.h"
40
41 int main(void)
42 {
43         printf("All OK\n");
44         return 0;
45 }