1
0
mirror of https://sourceware.org/git/glibc.git synced 2026-01-06 11:51:29 +03:00

Fix prototype of eventfd.

This commit is contained in:
Rasmus Villemoes
2014-09-20 14:04:52 +02:00
committed by Ondřej Bílka
parent 20e5a5f773
commit 69eb9a183c
4 changed files with 10 additions and 3 deletions

View File

@@ -22,7 +22,7 @@
int
eventfd (int count, int flags)
eventfd (unsigned int count, int flags)
{
#ifdef __NR_eventfd2
int res = INLINE_SYSCALL (eventfd2, 2, count, flags);