12345678910111213141516171819202122232425262728 |
- #include <crypt.h>
- #include <unistd.h>
- #include "libcrypt.h"
- #include <syscall.h>
- char *crypt(const char *key attribute_unused, const char *salt attribute_unused)
- {
- __set_errno(ENOSYS);
- return NULL;
- }
- void
- setkey(const char *key attribute_unused)
- {
- __set_errno(ENOSYS);
- }
- void
- encrypt(char *block attribute_unused, int flag attribute_unused)
- {
- __set_errno(ENOSYS);
- }
|