1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-30 00:00:16 +01:00

remove u_int64_t

https://github.com/warmcat/libwebsockets/issues/1167
This commit is contained in:
Andy Green 2018-01-30 09:29:58 +08:00
parent 76250c7bfb
commit c453968435
3 changed files with 1 additions and 7 deletions

View file

@ -4013,9 +4013,6 @@ lws_set_timeout(struct lws *wsi, enum pending_timeout reason, int secs);
#if !defined(LWS_SIZEOFPTR) #if !defined(LWS_SIZEOFPTR)
#define LWS_SIZEOFPTR (sizeof (void *)) #define LWS_SIZEOFPTR (sizeof (void *))
#endif #endif
#if !defined(u_int64_t)
#define u_int64_t unsigned long long
#endif
#if defined(__x86_64__) #if defined(__x86_64__)
#define _LWS_PAD_SIZE 16 /* Intel recommended for best performance */ #define _LWS_PAD_SIZE 16 /* Intel recommended for best performance */

View file

@ -45,7 +45,7 @@ struct sha1_ctxt {
} h; } h;
union { union {
unsigned char b8[8]; unsigned char b8[8];
u_int64_t b64[1]; uint64_t b64[1];
} c; } c;
union { union {
unsigned char b8[64]; unsigned char b8[64];

View file

@ -356,9 +356,6 @@ esp8266_tcp_stream_bind(lws_sockfd_type fd, int port, struct lws *wsi);
#ifndef BYTE_ORDER #ifndef BYTE_ORDER
#define BYTE_ORDER LITTLE_ENDIAN #define BYTE_ORDER LITTLE_ENDIAN
#endif #endif
#ifndef u_int64_t
typedef unsigned __int64 u_int64_t;
#endif
#undef __P #undef __P
#ifndef __P #ifndef __P