mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-05 04:44:05 +03:00
fix breakage from recent syscall commits due to missing errno macros
This commit is contained in:
parent
8258014fd1
commit
24df8b09cf
@ -1,5 +1,6 @@
|
|||||||
#include <sys/epoll.h>
|
#include <sys/epoll.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
#include <errno.h>
|
||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
|
|
||||||
int epoll_create(int size)
|
int epoll_create(int size)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#include <sys/eventfd.h>
|
#include <sys/eventfd.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <errno.h>
|
||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
|
|
||||||
int eventfd(unsigned int count, int flags)
|
int eventfd(unsigned int count, int flags)
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#include <sys/inotify.h>
|
#include <sys/inotify.h>
|
||||||
|
#include <errno.h>
|
||||||
#include "syscall.h"
|
#include "syscall.h"
|
||||||
|
|
||||||
int inotify_init()
|
int inotify_init()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user