Skip to content

Commit

Permalink
add missing stddef includes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreRouma committed Aug 26, 2024
1 parent fe9ac6c commit 6dce283
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions decoder_modules/ryfi_decoder/src/ryfi/conv_codec.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once
#include <stdint.h>
#include <stddef.h>
#include "dsp/processor.h"

extern "C" {
Expand Down
1 change: 1 addition & 0 deletions decoder_modules/ryfi_decoder/src/ryfi/framing.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once
#include "dsp/processor.h"
#include <stdint.h>
#include <stddef.h>

namespace ryfi {
// Synchronization word.
Expand Down
1 change: 1 addition & 0 deletions decoder_modules/ryfi_decoder/src/ryfi/packet.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once
#include <stdint.h>
#include <stddef.h>

namespace ryfi {
/**
Expand Down
1 change: 1 addition & 0 deletions decoder_modules/ryfi_decoder/src/ryfi/rs_codec.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once
#include <stdint.h>
#include <stddef.h>
#include "dsp/processor.h"

extern "C" {
Expand Down

0 comments on commit 6dce283

Please sign in to comment.