Skip to content
Snippets Groups Projects
Commit 80603fb3 authored by Ben Gamari's avatar Ben Gamari Committed by Marge Bot
Browse files

rts: Fix incorrect #include <sys/poll.h>

According to Alpine's warnings and poll(2), <poll.h> should be
preferred.
parent 471486b9
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@
#include "Proftimer.h"
#include "Schedule.h"
#include "posix/Clock.h"
#include <sys/poll.h>
#include <poll.h>
#include <time.h>
#if HAVE_SYS_TIME_H
......
......@@ -43,7 +43,7 @@
#include "Proftimer.h"
#include "Schedule.h"
#include "posix/Clock.h"
#include <sys/poll.h>
#include <poll.h>
#include <time.h>
#if HAVE_SYS_TIME_H
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment