Adapt inotify_nop to API changes

This commit is contained in:
Bert Münnich 2017-05-17 20:39:19 +02:00
parent c027122c5f
commit 52c57f5d61

View File

@ -18,26 +18,25 @@
#include "autoreload.h"
void arl_cleanup(arl_t *arl)
{
(void) arl;
}
bool arl_handle(arl_t *arl, const char *filepath)
{
(void) arl;
(void) filepath;
return false;
}
void arl_init(arl_t *arl)
{
(void) arl;
}
void arl_cleanup(arl_t *arl)
{
(void) arl;
}
void arl_setup(arl_t *arl, const char *filepath)
{
(void) arl;
(void) filepath;
}
bool arl_handle(arl_t *arl)
{
(void) arl;
return false;
}