From 2c76e45479aa4f0084200de9104726429006dd39 Mon Sep 17 00:00:00 2001 From: Snaipe Date: Tue, 22 Sep 2015 23:30:53 +0200 Subject: [PATCH] Fixed missing typedefs on BSD --- src/compat/internal.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/compat/internal.h b/src/compat/internal.h index fd5e8af..43ff62d 100644 --- a/src/compat/internal.h +++ b/src/compat/internal.h @@ -43,6 +43,10 @@ # include # ifdef BSD # include +typedef unsigned long u_long; +typedef unsigned int u_int; +typedef unsigned short u_short; +typedef unsigned char u_char; # include # endif # endif