aboutsummaryrefslogtreecommitdiffstats
path: root/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'timer.c')
-rw-r--r--timer.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/timer.c b/timer.c
index caee98d..241aa4d 100644
--- a/timer.c
+++ b/timer.c
@@ -1,4 +1,4 @@
-/* $Id: timer.c,v 1.3 2004/01/29 04:40:03 reinelt Exp $
+/* $Id: timer.c,v 1.4 2004/01/30 20:57:56 reinelt Exp $
*
* generic timer handling
*
@@ -21,6 +21,10 @@
*
*
* $Log: timer.c,v $
+ * Revision 1.4 2004/01/30 20:57:56 reinelt
+ * HD44780 patch from Martin Hejl
+ * dmalloc integrated
+ *
* Revision 1.3 2004/01/29 04:40:03 reinelt
* every .c file includes "config.h" now
*
@@ -54,6 +58,10 @@
#include "cfg.h"
#include "timer.h"
+#ifdef WITH_DMALLOC
+#include <dmalloc.h>
+#endif
+
typedef struct TIMER {
void (*callback)(void *data);