1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vlib: use new filename format

This commit is contained in:
lutherwenxu
2020-04-12 01:51:32 +08:00
committed by GitHub
parent e64db44bb5
commit dc4db87be3
45 changed files with 0 additions and 26 deletions

17
vlib/net/init_nix.c.v Normal file
View File

@ -0,0 +1,17 @@
module net
#include <sys/socket.h>
#include <unistd.h>
#include <netinet/in.h>
#include <netdb.h>
#include <errno.h>
fn error_code() int {
return C.errno
}
pub const (
MSG_NOSIGNAL = 0x4000
)
#flag solaris -lsocket