Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[musl] Add missing stdint.h includes. JB#49555
Using uintNN_t types requires #include <stdint.h>.

Signed-off-by: Simo Piiroinen <simo.piiroinen@jollamobile.com>
  • Loading branch information
spiiroin committed Sep 24, 2020
1 parent 94238c2 commit 6c9254a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/dsme/modules.h
Expand Up @@ -27,8 +27,11 @@
#define DSME_MODULES_H

#include <dsme/messages.h>

#include <sys/types.h>

#include <stdbool.h>
#include <stdint.h>

#ifdef __cplusplus
extern "C" {
Expand Down
1 change: 1 addition & 0 deletions test/dummy_bme.c
Expand Up @@ -28,6 +28,7 @@
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <stdint.h>

#include <sys/types.h>
#include <sys/time.h>
Expand Down

0 comments on commit 6c9254a

Please sign in to comment.