summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-07-16 23:00:17 +0200
committerGünther Deschner <gd@samba.org>2010-07-16 23:00:17 +0200
commit5815119cb0ca56f5155936d99dae5fc9e4a53db8 (patch)
tree64125cc33559b7ed1372650a09a34e47d7f7b9da /examples
parent3b0c87cf319b562aeb1f5e12135905d6d57e926f (diff)
downloadsamba-5815119cb0ca56f5155936d99dae5fc9e4a53db8.tar.gz
samba-5815119cb0ca56f5155936d99dae5fc9e4a53db8.tar.bz2
samba-5815119cb0ca56f5155936d99dae5fc9e4a53db8.zip
s3-perfcount: make it possible to compile the example perfcount daemon.
Guenther
Diffstat (limited to 'examples')
-rw-r--r--examples/perfcounter/perf.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/perfcounter/perf.h b/examples/perfcounter/perf.h
index 7f06b05027..b2968a08cf 100644
--- a/examples/perfcounter/perf.h
+++ b/examples/perfcounter/perf.h
@@ -21,6 +21,21 @@
#ifndef __PERF_H__
#define __PERF_H__
+#define _PUBLIC_
+
+#ifdef HAVE_STDBOOL_H
+#include <stdbool.h>
+#endif
+
+#if !defined(HAVE_BOOL)
+#ifdef HAVE__Bool
+#define bool _Bool
+#else
+typedef int bool;
+#endif
+#endif
+
+
#include <stdlib.h>
#include <time.h>
#include <math.h>