summaryrefslogtreecommitdiff
path: root/user.h
diff options
context:
space:
mode:
Diffstat (limited to 'user.h')
-rw-r--r--user.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/user.h b/user.h
index b08dd36..469c6e7 100644
--- a/user.h
+++ b/user.h
@@ -1,6 +1,8 @@
#ifndef _USER_H_
#define _USER_H_
+#include <time.h>
+
#define USERS_MAX 1000
struct user_t {
@@ -8,6 +10,7 @@ struct user_t {
char *nick;
unsigned long lines[24*4];
unsigned long long words, characters, kicks, kicked, monolog_lines, monologs;
+ time_t seen_first, seen_last;
struct user_t *real_user, *next;
};