summaryrefslogtreecommitdiff
path: root/src/libstddjb/socket_udp4.c
blob: d6e8ead69fa07f3fb17bbc234c934be02e3a7c6e (plain)
1
2
3
4
5
6
7
8
9
10
11
/* ISC license. */

#include <skalibs/nonposix.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <skalibs/socket.h>

int socket_udp4_internal (unsigned int flags)
{
  return socket_internal(AF_INET, SOCK_DGRAM, 0, flags) ;
}