Skip to content

Commit 94cf65a

Browse files
uenosmuellerDD
authored andcommitted
internal: include <stdbool.h> in ext_headers.h
Given <stdint.h> is already there, it wouldn't hurt to have <stdbool.h> as well, as both headers are in the C99 standard. Signed-off-by: Daiki Ueno <dueno@redhat.com> Signed-off-by: Stephan Mueller <smueller@chronox.de>
1 parent 1801a43 commit 94cf65a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

internal/api/ext_headers.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ static const int errno_private = 0;
264264
#include <fcntl.h>
265265
#include <inttypes.h>
266266
#include <limits.h>
267+
#include <stdbool.h>
267268
#include <stddef.h>
268269
#include <stdint.h>
269270
#include <stdlib.h>
@@ -346,6 +347,7 @@ static inline int lc_get_time(time64_t *time_since_epoch)
346347
#include <fcntl.h>
347348
#include <inttypes.h>
348349
#include <limits.h>
350+
#include <stdbool.h>
349351
#include <stddef.h>
350352
#include <stdint.h>
351353
#include <stdlib.h>

0 commit comments

Comments
 (0)