1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-27 02:56:18 -04:00

[quickjs] Do not include <uchar.h>

This commit is contained in:
Witold Filipczyk 2023-10-29 18:37:07 +01:00
parent 418871e133
commit 2ac5d5c0b9

View File

@ -7,7 +7,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <uchar.h>
#include "elinks.h"
@ -113,7 +112,7 @@ js_value_to_accesskey(JSValueConst val)
JSString *p = JS_VALUE_GET_STRING(val);
size_t len;
char16_t chr[2];
uint16_t chr[2];
len = p->len;