summaryrefslogtreecommitdiff
path: root/src/timer.c
diff options
context:
space:
mode:
authorfcolin2005-08-18 07:36:18 +0000
committerfcolin2005-08-18 07:36:18 +0000
commit9921017a4b14b379d99305e17f8583ff90de0c1b (patch)
tree2f76b0a528a766ee67be1ba82973f02acc6e85c2 /src/timer.c
parentf625f6e00c1d5d1194ce3db62e59ccc47fdf2386 (diff)
downloadivy-c-9921017a4b14b379d99305e17f8583ff90de0c1b.zip
ivy-c-9921017a4b14b379d99305e17f8583ff90de0c1b.tar.gz
ivy-c-9921017a4b14b379d99305e17f8583ff90de0c1b.tar.bz2
ivy-c-9921017a4b14b379d99305e17f8583ff90de0c1b.tar.xz
memory leak malloc/free cleanup
Diffstat (limited to 'src/timer.c')
-rw-r--r--src/timer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/timer.c b/src/timer.c
index 9f13117..7efb3ce 100644
--- a/src/timer.c
+++ b/src/timer.c
@@ -15,16 +15,20 @@
*/
/* Module de gestion des timers autour d'un select */
+
#include <stdio.h>
#include <sys/types.h>
#include <time.h>
#include <stdlib.h>
#include <memory.h>
+
#ifdef WIN32
+#include <crtdbg.h>
#include <windows.h>
#else
#include <sys/time.h>
#endif
+
#include "list.h"
#include "timer.h"