mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-01 00:38:31 +00:00
Make fixups for libcrypt
This commit is contained in:
parent
9b4701b3bc
commit
e72a88ea70
8 changed files with 30 additions and 16 deletions
6
third_party/musl/crypt.h
vendored
6
third_party/musl/crypt.h
vendored
|
@ -7,10 +7,8 @@ struct crypt_data {
|
|||
char __buf[256];
|
||||
};
|
||||
|
||||
void encrypt(char *, int);
|
||||
void setkey(const char *);
|
||||
char *crypt(const char *, const char *);
|
||||
char *crypt_r(const char *, const char *, struct crypt_data *);
|
||||
char *crypt(const char *, const char *) libcesque;
|
||||
char *crypt_r(const char *, const char *, struct crypt_data *) libcesque;
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* COSMOPOLITAN_THIRD_PARTY_MUSL_CRYPT_H_ */
|
||||
|
|
1
third_party/python/Modules/posixmodule.c
vendored
1
third_party/python/Modules/posixmodule.c
vendored
|
@ -89,6 +89,7 @@
|
|||
#include "third_party/python/Include/warnings.h"
|
||||
#include "third_party/python/Include/yoink.h"
|
||||
#include "third_party/python/Modules/_multiprocessing/multiprocessing.h"
|
||||
#include "libc/unistd.h"
|
||||
#include "third_party/python/pyconfig.h"
|
||||
|
||||
PYTHON_PROVIDE("posix");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue