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:
parent
303f92a61b
commit
c1193e81f0
1 changed files with 1 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue