Fix build warnings

The patch fixes the following build warnings:

zathura.c: In function ‘prepare_document_open_from_stdin’:
zathura.c:306: warning: implicit declaration of function ‘close’
zathura.c:314: warning: implicit declaration of function ‘read’
zathura.c:316: warning: implicit declaration of function ‘write’

Signed-off-by: Pavel Borzenkov <pavel.borzenkov@gmail.com>
Signed-off-by: Sebastian Ramacher <s.ramacher@gmx.at>
This commit is contained in:
Pavel Borzenkov 2011-10-24 00:46:53 -04:00 committed by Sebastian Ramacher
parent d18f255bc0
commit 0476dbe930

View File

@ -4,6 +4,7 @@
#define _XOPEN_SOURCE 700
#include <stdlib.h>
#include <unistd.h>
#include <girara/datastructures.h>
#include <girara/utils.h>