Missing time.h.

This commit is contained in:
Nicholas Marriott 2007-10-19 22:17:29 +00:00
parent 97e8b94ef8
commit 63795f6c04
2 changed files with 4 additions and 2 deletions

3
log.c
View File

@ -1,4 +1,4 @@
/* $Id: log.c,v 1.3 2007-09-26 18:55:42 nicm Exp $ */
/* $Id: log.c,v 1.4 2007-10-19 22:17:29 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -23,6 +23,7 @@
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <time.h>
#include "tmux.h"

View File

@ -1,4 +1,4 @@
/* $Id: session.c,v 1.22 2007-10-12 11:24:15 nicm Exp $ */
/* $Id: session.c,v 1.23 2007-10-19 22:16:53 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -20,6 +20,7 @@
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include "tmux.h"