1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Added missing '#include <time.h>' in tools.c

This commit is contained in:
Klaus Schmidinger 2001-08-26 15:52:17 +02:00
parent f4d75d4141
commit 287a267669
2 changed files with 3 additions and 2 deletions

View File

@ -664,7 +664,7 @@ Video Disk Recorder Revision History
- Fixed the chirping sound after Pause/Play of a DVD (thanks to Andreas
Schultz).
2001-08-25: Version 0.93
2001-08-26: Version 0.93
- The menus and the channel display now show the current date and time.
- The new Setup parameter MaxVideoFileSize can be used to customize the

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: tools.c 1.42 2001/08/26 13:11:17 kls Exp $
* $Id: tools.c 1.43 2001/08/26 15:45:41 kls Exp $
*/
#define _GNU_SOURCE
@ -17,6 +17,7 @@
#endif
#include <stdlib.h>
#include <sys/time.h>
#include <time.h>
#include <unistd.h>
#include "i18n.h"