src: shared: schedules: add missing includes to header

Needed for clang-tidy prep work, as it requires headers to work standalone
(which is useful anyway).
This commit is contained in:
Sam James 2023-01-29 03:24:13 +00:00 committed by William Hubbs
parent e8a76ad6e6
commit bfe38c98a8

View File

@ -13,6 +13,9 @@
#ifndef __RC_SCHEDULES_H
#define __RC_SCHEDULES_H
#include <stdbool.h>
#include <sys/types.h>
void free_schedulelist(void);
int parse_signal(const char *applet, const char *sig);
void parse_schedule(const char *applet, const char *string, int timeout);