--- /dev/null
+/* 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 */
void explicit_bzero(void *p, size_t n);
#endif
+#ifndef HAVE_PLEDGE
+int pledge(const char *promises, const char *paths[]);
+#endif /* HAVE_PLEDGE */
+
void *xmmap(size_t size);
char *xcrypt(const char *password, const char *salt);
char *shadow_pw(struct passwd *pw);