From 0d523d57af06019e115f538bd71cd12ffe5e6ae2 Mon Sep 17 00:00:00 2001 From: Mark Charlebois Date: Fri, 17 Apr 2015 18:20:33 -0700 Subject: [PATCH] QuRT: Added nfds_t type DSPAL does not yet provide poll.h and all we need is the defintion of nfds_t. Signed-off-by: Mark Charlebois --- src/platforms/qurt/include/poll.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/platforms/qurt/include/poll.h b/src/platforms/qurt/include/poll.h index e69de29bb2..324036aa5c 100644 --- a/src/platforms/qurt/include/poll.h +++ b/src/platforms/qurt/include/poll.h @@ -0,0 +1,3 @@ +#pragma once + +typedef unsigned int nfds_t;