]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
use correct #includes for posix timer API
authorChristopher Rienzo <chris@rienzo.net>
Tue, 7 Feb 2012 16:29:15 +0000 (16:29 +0000)
committerChristopher Rienzo <chris@rienzo.net>
Tue, 7 Feb 2012 16:29:15 +0000 (16:29 +0000)
src/mod/timers/mod_posix_timer/mod_posix_timer.c

index f5b9a61a1fe20fb420699bd79fd2f183aab04c16..1ba3e23015127741d78287901e29c6785fa5cf02 100644 (file)
@@ -28,8 +28,8 @@
  *
  */
 #include <switch.h>
-#include <sys/signal.h>
-#include <sys/time.h>
+#include <time.h>
+#include <signal.h>
 
 SWITCH_MODULE_LOAD_FUNCTION(mod_posix_timer_load);
 SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_posix_timer_shutdown);