Skip to content

Commit e36f4bc

Browse files
committed
add missing include files in headers
1 parent 22c1022 commit e36f4bc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

libregexp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ int lre_exec(uint8_t **capture,
5353
int lre_parse_escape(const uint8_t **pp, int allow_utf16);
5454
LRE_BOOL lre_is_space(int c);
5555

56-
void lre_byte_swap(uint8_t *buf, size_t len, BOOL is_byte_swapped);
56+
void lre_byte_swap(uint8_t *buf, size_t len, LRE_BOOL is_byte_swapped);
5757

5858
/* must be provided by the user */
5959
LRE_BOOL lre_check_stack_overflow(void *opaque, size_t alloca_size);

libunicode.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#ifndef LIBUNICODE_H
2525
#define LIBUNICODE_H
2626

27+
#include <stddef.h>
2728
#include <inttypes.h>
2829

2930
#define LRE_BOOL int /* for documentation purposes */

0 commit comments

Comments
 (0)