Add some missing includes/declarations

This commit is contained in:
Kirill Primak 2023-06-05 23:45:28 +03:00 committed by Alexander Orzechowski
parent c5f4df6c96
commit 3dc646ea88
9 changed files with 17 additions and 0 deletions

View file

@ -2,6 +2,7 @@
#define UTIL_SHM_H
#include <stdbool.h>
#include <stddef.h>
int create_shm_file(void);
int allocate_shm_file(size_t size);

View file

@ -1,6 +1,7 @@
#ifndef UTIL_TIME_H
#define UTIL_TIME_H
#include <stdint.h>
#include <time.h>
/**