mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
11 lines
162 B
V
11 lines
162 B
V
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
|
|
}
|