Browse Source

vlc_fixups: define IN6ADDR_ANY_INIT on OS/2

pull/144/head
KO Myung-Hun 3 years ago
committed by Steve Lhomme
parent
commit
c4a656a7b0
  1. 3
      include/vlc_fixups.h

3
include/vlc_fixups.h

@ -703,6 +703,9 @@ struct sockaddr_in6
static const struct in6_addr in6addr_any =
{ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } };
#define IN6ADDR_ANY_INIT \
{ { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } } }
# include <errno.h>
# ifndef EPROTO
# define EPROTO (ELAST + 1)

Loading…
Cancel
Save