t* sacc + cursorline and uri preview
       
   URI git clone git://git.codevoid.de/sacc-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR LICENSE
       ---
   DIR commit 1fa05223649af656df34cdcfa8f857c4ccb8954f
   DIR parent 20e00b45fb26bdf64473ef00cbf273d2c57cb8bb
   URI Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sun,  6 Aug 2017 16:21:24 +0200
       
       add include for IPPROTO_TCP, fix build for FreeBSD
       
       Diffstat:
         M sacc.c                              |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/sacc.c b/sacc.c
       t@@ -2,12 +2,13 @@
        #include <errno.h>
        #include <fcntl.h>
        #include <netdb.h>
       +#include <netinet/in.h>
        #include <stdarg.h>
        #include <stdio.h>
        #include <stdlib.h>
        #include <string.h>
        #if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || \
       -    defined(___FreeBSD__)
       +    defined(__FreeBSD__)
        #include <sys/ioctl.h>
        #else
        #include <stropts.h>