Skip to content

Commit 43bc47d

Browse files
Fixed ifdef
Signed-off-by: Mikhail R. Gadelha <[email protected]>
1 parent dd1c163 commit 43bc47d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/poll/linux/poll.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include <sys/syscall.h> // SYS_poll, SYS_ppoll
2020

21-
#if SYS_poll
21+
#ifdef SYS_poll
2222
constexpr auto POLL_SYSCALL_ID = SYS_poll;
2323
#elif defined(SYS_ppoll)
2424
constexpr auto POLL_SYSCALL_ID = SYS_ppoll;

0 commit comments

Comments
 (0)