Skip to content

Commit

Permalink
nanocbor: Use inttypes for uint8_t etc
Browse files Browse the repository at this point in the history
  • Loading branch information
bergzand committed Nov 24, 2023
1 parent 54e8938 commit 3e27823
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion include/nanocbor/nanocbor.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
#ifndef NANOCBOR_NANOCBOR_H
#define NANOCBOR_NANOCBOR_H

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

#ifdef __cplusplus
Expand Down
1 change: 1 addition & 0 deletions src/decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* @}
*/

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
Expand Down

0 comments on commit 3e27823

Please sign in to comment.