Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
network
bind.c
pretty
plain
permalink
blame
history
•
7 lines
•
161 B
1
#include <sys/socket.h>
2
#include "syscall.h"
3
4
int bind(int fd, const struct sockaddr *addr, socklen_t len)
5
{
6
	return socketcall(bind, fd, addr, len, 0, 0, 0);
7
}