aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/options/crypt/generic/crypt-stubs.cpp
blob: 65e0d238aa8a5296c0c38f59781aab0fa1a6f07b (plain)
1
2
3
4
5
6
7
#include <crypt.h>
#include <bits/ensure.h>

char *crypt(const char *, const char *) {
	__ensure(!"Not implemented");
	__builtin_unreachable();
}