link.c: fixed to include <sys/types.h> for caddr_t107/head
commit4e65a7b59cf4ac5ed25fa49349bdffe5d53928e1
authorChristian Wiese <chris@opensde.org>
Thu, 10 Apr 2014 09:47:00 +0000 (10 11:47 +0200)
committerChristian Wiese <chris@opensde.org>
Thu, 10 Apr 2014 10:59:45 +0000 (10 12:59 +0200)
treeb81dc7056c0bd67cd0c84ae1958f2aecc4c7e974
parent3bcd95bb1da97f00eb0e1d6e8d497911c14b4e44
link.c: fixed to include <sys/types.h> for caddr_t

When building against musl libc compiling bails out because of caddr_t not
being declared:
--------------------------------------------------------------------------
link.c: In function 'wireless_sigqual':
link.c:41:24: error: 'caddr_t' undeclared (first use in this function)
--------------------------------------------------------------------------

As caddr_t is declared in <sys/types.h> this header needs to be included.
link.c