socket_udp4.c (235B)
1 /* ISC license. */ 2 3 #include <skalibs/nonposix.h> 4 #include <sys/socket.h> 5 #include <netinet/in.h> 6 #include <skalibs/socket.h> 7 8 int socket_udp4_internal (unsigned int flags) 9 { 10 return socket_internal(AF_INET, SOCK_DGRAM, 0, flags) ; 11 }