[pisa-src] r1132 - trunk/include

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Tue, 13 Oct 2009 20:29:03 +0200

Author: biurrun
Date: Tue Oct 13 20:29:03 2009
New Revision: 1132

Log:
Add missing #include <sys/time.h>, necessary for timerclear.
Fixes the following warning:
../include/scheduler.h:39: warning: implicit declaration of function 
`timerclear'

Modified:
   trunk/include/scheduler.h

Modified: trunk/include/scheduler.h
==============================================================================
--- trunk/include/scheduler.h   Tue Oct 13 20:06:10 2009        (r1131)
+++ trunk/include/scheduler.h   Tue Oct 13 20:29:03 2009        (r1132)
@@ -13,6 +13,8 @@
 #ifndef PISA_SCHEDULER_H
 #define PISA_SCHEDULER_H
 
+#include <sys/time.h>
+
 #include "packet.h"
 #include "uthash.h"
 

Other related posts:

  • » [pisa-src] r1132 - trunk/include - Diego Biurrun