logswan

Fast Web log analyzer using probabilistic data structures
Log | Files | Refs | README | LICENSE

commit 12dbae4afdfc9e30f22446e5cf3d20f706ee67fb
parent cb335a36b55a50590f56e7cf83ae32d6fd4eb92d
Author: Frederic Cambus <fred@statdns.com>
Date:   Thu, 14 Jan 2016 10:17:35 +0100

Adding a null pledge implementation

Diffstat:
Acompat/pledge.c | 6++++++
Acompat/pledge.h | 1+
2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/compat/pledge.c b/compat/pledge.c @@ -0,0 +1,6 @@ +int +pledge(const char *promises, const char *paths[]) { + (void)promises; + (void)paths; + return 0; +} diff --git a/compat/pledge.h b/compat/pledge.h @@ -0,0 +1 @@ +int pledge(const char *promises, const char *paths[]);