1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-25 14:50:24 +03:00

s3-perfcount: make it possible to compile the example perfcount daemon.

Guenther
This commit is contained in:
Günther Deschner 2010-07-16 23:00:17 +02:00
parent 3b0c87cf31
commit 5815119cb0

View File

@ -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>