summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-pledge.c
blob: afce3c002b5eb87083a837529586e4ebe14a1b3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Placed in the public domain.  */

#include "includes.h"

#ifndef HAVE_PLEDGE

/* Stub; real implementations wanted. */
int
pledge(const char *promises, const char *paths[])
{
	return 0;
}

#endif /* HAVE_PLEDGE */