Added missing include file

This commit is contained in:
Klaus Schmidinger 2000-07-28 12:45:18 +02:00
parent 59237584e9
commit 7ac97639da
2 changed files with 4 additions and 2 deletions

View File

@ -100,7 +100,8 @@ Video Disk Recorder Revision History
the 'timers.conf' file with a text editor, or by defining/modifying the timer the 'timers.conf' file with a text editor, or by defining/modifying the timer
via the SVDRP interface. via the SVDRP interface.
2000-07-26: 2000-07-28:
- When scrolling through a list it now moves a full page up or down when the - When scrolling through a list it now moves a full page up or down when the
cursor reaches the top or bottom of the menu (thanks to Heino Goldenstein!). cursor reaches the top or bottom of the menu (thanks to Heino Goldenstein!).
- Added missing '#include <sys/stat.h>' to recording.c.

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: recording.c 1.12 2000/07/24 16:31:07 kls Exp $ * $Id: recording.c 1.13 2000/07/27 20:01:05 kls Exp $
*/ */
#define _GNU_SOURCE #define _GNU_SOURCE
@ -13,6 +13,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
#include "interface.h" #include "interface.h"
#include "tools.h" #include "tools.h"