mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-12 14:09:12 +00:00
Fix some build errors
This commit is contained in:
parent
7558549d44
commit
5b908bc756
8 changed files with 19 additions and 11 deletions
3
third_party/intel/vaesintrin.internal.h
vendored
3
third_party/intel/vaesintrin.internal.h
vendored
|
@ -1,5 +1,8 @@
|
|||
/* clang-format off */
|
||||
#if defined(__x86_64__) && !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
#ifndef _IMMINTRIN_H_INCLUDED
|
||||
# error "Never use <vaesintrin.h> directly; include <immintrin.h> instead."
|
||||
#endif
|
||||
#ifndef __VAESINTRIN_H_INCLUDED
|
||||
#define __VAESINTRIN_H_INCLUDED
|
||||
#if !defined(__VAES__) || !defined(__AVX__)
|
||||
|
|
4
third_party/mbedtls/test/test_suite_ssl.c
vendored
4
third_party/mbedtls/test/test_suite_ssl.c
vendored
|
@ -91,7 +91,7 @@ void log_analyzer( void *ctx, int level,
|
|||
|
||||
/* Invalid minor version used when not specifying a min/max version or expecting a test to fail */
|
||||
#define TEST_SSL_MINOR_VERSION_NONE -1
|
||||
|
||||
s
|
||||
typedef struct handshake_test_options
|
||||
{
|
||||
const char *cipher;
|
||||
|
@ -2270,6 +2270,8 @@ void test_ssl_mock_sanity( )
|
|||
unsigned char received[MSGLEN];
|
||||
mbedtls_mock_socket socket;
|
||||
|
||||
memset(message, 0, sizeof(message));
|
||||
|
||||
mbedtls_mock_socket_init( &socket );
|
||||
TEST_ASSERT( mbedtls_mock_tcp_send_b( &socket, message, MSGLEN ) < 0 );
|
||||
mbedtls_mock_socket_close( &socket );
|
||||
|
|
4
third_party/musl/rand48.c
vendored
4
third_party/musl/rand48.c
vendored
|
@ -25,8 +25,8 @@
|
|||
│ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. │
|
||||
│ │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/str/str.h"
|
||||
#include "third_party/musl/rand48.h"
|
||||
#include "libc/str/str.h"
|
||||
|
||||
asm(".ident\t\"\\n\\n\
|
||||
Musl libc (MIT License)\\n\
|
||||
|
@ -87,7 +87,7 @@ long mrand48(void)
|
|||
return jrand48(__seed48);
|
||||
}
|
||||
|
||||
unsigned short *seed48(unsigned short *s)
|
||||
unsigned short *seed48(unsigned short s[3])
|
||||
{
|
||||
static unsigned short p[3];
|
||||
memcpy(p, __seed48, sizeof p);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue