Minor coding style and consistency fixes

This commit is contained in:
2024-09-05 22:15:43 +02:00
parent 0bd4866816
commit b118631500
11 changed files with 84 additions and 69 deletions

View File

@@ -1,12 +1,11 @@
#ifndef MAD_CORE_COMMON_H
#define MAD_CORE_COMMON_H
#include "common/types.h"
#include "common/watchdog.h"
#include <stddef.h>
#include <stdint.h>
#include <stdarg.h>
#include <stdbool.h>
#define UNUSED(s) (void)(s)
#define BIT(n) (0x1U << (n))