Add missing include for ssize_t on FreeBSD.

src/tvhlog.h:48: error: expected declaration specifiers or '...' before 'ssize_t'
src/tvhlog.c:244: error: conflicting types for '_tvhlog_hexdump'
src/tvhlog.h:48: error: previous declaration of '_tvhlog_hexdump' was here
This commit is contained in:
Bernhard Froehlich 2013-05-05 14:49:47 +02:00 committed by Adam Sutton
parent 04199db013
commit f22d3e0fb2

View file

@ -18,6 +18,7 @@
#ifndef __TVH_LOGGING_H__
#define __TVH_LOGGING_H__
#include <sys/types.h>
#include <sys/syslog.h>
#include <pthread.h>
#include <stdarg.h>