fsNotifier/linux: Fix includes for musl libc

GitOrigin-RevId: be9b6594a07f246ad39c100ae858c4bb2cd1a825
This commit is contained in:
thyrc
2021-12-02 22:27:23 +01:00
committed by intellij-monorepo-bot
parent 824e221516
commit 9a68c50cb2
2 changed files with 3 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
#include <dirent.h>
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@@ -3,13 +3,14 @@
#include "fsnotifier.h"
#include <errno.h>
#include <linux/limits.h>
#include <limits.h>
#include <mntent.h>
#include <paths.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <sys/inotify.h>
#include <sys/select.h>
#include <sys/stat.h>
#include <unistd.h>