From ee7cd3e6b622a8c40236ac26270e369bc28af007 Mon Sep 17 00:00:00 2001 From: pk33 Date: Sun, 3 Nov 2024 01:39:28 +0100 Subject: modesetting tweaks --- musl/crypt.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 musl/crypt.h (limited to 'musl/crypt.h') diff --git a/musl/crypt.h b/musl/crypt.h new file mode 100644 index 0000000..07de216 --- /dev/null +++ b/musl/crypt.h @@ -0,0 +1,20 @@ +#ifndef _CRYPT_H +#define _CRYPT_H + +#ifdef __cplusplus +extern "C" { +#endif + +struct crypt_data { + int initialized; + char __buf[256]; +}; + +char *crypt(const char *, const char *); +char *crypt_r(const char *, const char *, struct crypt_data *); + +#ifdef __cplusplus +} +#endif + +#endif -- cgit v1.2.3