Files
kotlin-fork/samples/socket/sockets.def
T
2017-05-27 11:27:00 +03:00

13 lines
240 B
Modula-2

headers = sys/socket.h sys/errno.h netdb.h stdio.h string.h unistd.h stdlib.h netinet/in.h
excludeDependentModules.osx = true
---
static int interop_errno() {
return errno;
}
static int interop_htons(int x) {
return htons(x);
}