fix: Rename headers to allow compilation against musl libc

tidy: Format includes
This commit is contained in:
Luca Bilke 2023-11-22 12:59:59 +01:00 committed by Utkarsh Verma
parent 5f45160b65
commit 56e6e2ef64
No known key found for this signature in database
GPG Key ID: 7A4885A7162BDF20
6 changed files with 6 additions and 8 deletions

View File

@ -1,8 +1,8 @@
#ifndef BLOCK_H
#define BLOCK_H
#include <bits/stdint-uintn.h>
#include <stdbool.h>
#include <stdint.h>
#include <sys/types.h>
#include "config.h"

View File

@ -1,7 +1,7 @@
#ifndef SIGNAL_HANDLER_H
#define SIGNAL_HANDLER_H
#include <bits/types/sigset_t.h>
#include <signal.h>
#include "block.h"
#include "timer.h"

View File

@ -1,8 +1,8 @@
#ifndef WATCHER_H
#define WATCHER_H
#include <poll.h>
#include <stdbool.h>
#include <sys/poll.h>
#include "block.h"
#include "main.h"

View File

@ -1,9 +1,8 @@
#include "block.h"
#include <bits/stdint-uintn.h>
#include <bits/types/FILE.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,8 +1,7 @@
#include "signal-handler.h"
#include <bits/stdint-uintn.h>
#include <bits/types/sigset_t.h>
#include <signal.h>
#include <stdint.h>
#include <stdio.h>
#include <sys/signalfd.h>
#include <sys/types.h>

View File

@ -1,9 +1,9 @@
#include "watcher.h"
#include <errno.h>
#include <poll.h>
#include <stdbool.h>
#include <stdio.h>
#include <sys/poll.h>
#include "block.h"
#include "util.h"