POSIX: fixed function prototype

Function was changed to be void but prototype was not updated

Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
Mark Charlebois 2015-06-02 01:03:12 -07:00
parent b4152f3daa
commit 6fd612a218
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ extern struct wqueue_s g_hrt_work;
void hrt_work_queue_init(void);
int hrt_work_queue(struct work_s *work, worker_t worker, void *arg, uint32_t delay);
int hrt_work_cancel(struct work_s *work);
void hrt_work_cancel(struct work_s *work);
inline void hrt_work_lock();
inline void hrt_work_unlock();