summaryrefslogtreecommitdiff
path: root/openbsd-compat
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd-compat')
-rw-r--r--openbsd-compat/bsd-pledge.c14
-rw-r--r--openbsd-compat/openbsd-compat.h4
2 files changed, 0 insertions, 18 deletions
diff --git a/openbsd-compat/bsd-pledge.c b/openbsd-compat/bsd-pledge.c
deleted file mode 100644
index afce3c002..000000000
--- a/openbsd-compat/bsd-pledge.c
+++ /dev/null
@@ -1,14 +0,0 @@
1/* Placed in the public domain. */
2
3#include "includes.h"
4
5#ifndef HAVE_PLEDGE
6
7/* Stub; real implementations wanted. */
8int
9pledge(const char *promises, const char *paths[])
10{
11 return 0;
12}
13
14#endif /* HAVE_PLEDGE */
diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h
index be7b6877e..8cc8a11b7 100644
--- a/openbsd-compat/openbsd-compat.h
+++ b/openbsd-compat/openbsd-compat.h
@@ -264,10 +264,6 @@ int bcrypt_pbkdf(const char *, size_t, const u_int8_t *, size_t,
264void explicit_bzero(void *p, size_t n); 264void explicit_bzero(void *p, size_t n);
265#endif 265#endif
266 266
267#ifndef HAVE_PLEDGE
268int pledge(const char *promises, const char *paths[]);
269#endif /* HAVE_PLEDGE */
270
271void *xmmap(size_t size); 267void *xmmap(size_t size);
272char *xcrypt(const char *password, const char *salt); 268char *xcrypt(const char *password, const char *salt);
273char *shadow_pw(struct passwd *pw); 269char *shadow_pw(struct passwd *pw);