1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-22 14:10:34 +00:00

Unbreak the build on my system.

This commit is contained in:
Josh Elsasser 2007-07-14 05:28:35 +00:00
parent 261ac20427
commit c0970d0431
2 changed files with 5 additions and 0 deletions

View file

@ -44,6 +44,9 @@ int vasprintf( char **, const char *, va_list );
#ifndef __AMIGAOS4__
#include <sys/resource.h>
#endif
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <assert.h>
#ifdef SYS_BEOS
# define socklen_t uint32_t

View file

@ -25,6 +25,8 @@
#ifndef TR_UTILS_H
#define TR_UTILS_H 1
#include <stdarg.h>
void tr_msgInit( void );
#define tr_err( a... ) tr_msg( TR_MSG_ERR, ## a )