aboutsummaryrefslogtreecommitdiffstats
path: root/include/structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/structs.h')
-rw-r--r--include/structs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/structs.h b/include/structs.h
index cb1bca9..3b5c550 100644
--- a/include/structs.h
+++ b/include/structs.h
@@ -1,5 +1,8 @@
#ifndef _STRUCTS_H
#define _STRUCTS_H
+
+#include <time.h>
+
struct item {
double p;
double w;
@@ -16,5 +19,6 @@ struct front_item {
struct item i;
struct front_item * next;
struct front_item * prev;
+ clock_t time;
};
#endif