headers: make headers self-contained

each header should include the dependency headers in order to make the
headers self-contained.
this is allows clangd based IDEs to parse the headers and populate the
code model correctly
This commit is contained in:
Tim Blechmann 2022-12-05 14:42:20 +08:00
parent d28e8cb294
commit 58d9d991f4
18 changed files with 47 additions and 0 deletions

View file

@ -29,6 +29,12 @@
#ifndef __ALSA_SEQ_H
#define __ALSA_SEQ_H
#include <stddef.h>
#include <unistd.h>
#include "conf.h"
#include "seq_event.h"
#include "timer.h"
#ifdef __cplusplus
extern "C" {
#endif