diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-14 07:01:03 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-14 07:01:03 +0000 |
commit | f44ae0535ec9115a85a15d63a4d1892e2d1e2851 (patch) | |
tree | 4a845dd49af7f0d0d2d1400851f6f9ca79bd41c9 | |
parent | 910d6282c49909a3f0277a858b699a8e06d28589 (diff) | |
download | rtmux-f44ae0535ec9115a85a15d63a4d1892e2d1e2851.tar.gz rtmux-f44ae0535ec9115a85a15d63a4d1892e2d1e2851.tar.bz2 rtmux-f44ae0535ec9115a85a15d63a4d1892e2d1e2851.zip |
Need time.h not sys/time.h for time(2).
-rw-r--r-- | server-fn.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server-fn.c b/server-fn.c index db65c175..b6c25d8e 100644 --- a/server-fn.c +++ b/server-fn.c @@ -1,4 +1,4 @@ -/* $Id: server-fn.c,v 1.70 2009-07-12 17:07:58 nicm Exp $ */ +/* $Id: server-fn.c,v 1.71 2009-07-14 07:01:03 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -17,7 +17,6 @@ */ #include <sys/types.h> -#include <sys/time.h> #include <string.h> #include <time.h> |