add missing stddef includes

This commit is contained in:
AlexandreRouma 2024-08-26 22:37:18 +02:00
parent fe9ac6c9a1
commit 6dce28345c
4 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#pragma once #pragma once
#include <stdint.h> #include <stdint.h>
#include <stddef.h>
#include "dsp/processor.h" #include "dsp/processor.h"
extern "C" { extern "C" {

View File

@ -1,6 +1,7 @@
#pragma once #pragma once
#include "dsp/processor.h" #include "dsp/processor.h"
#include <stdint.h> #include <stdint.h>
#include <stddef.h>
namespace ryfi { namespace ryfi {
// Synchronization word. // Synchronization word.

View File

@ -1,5 +1,6 @@
#pragma once #pragma once
#include <stdint.h> #include <stdint.h>
#include <stddef.h>
namespace ryfi { namespace ryfi {
/** /**

View File

@ -1,5 +1,6 @@
#pragma once #pragma once
#include <stdint.h> #include <stdint.h>
#include <stddef.h>
#include "dsp/processor.h" #include "dsp/processor.h"
extern "C" { extern "C" {