libowfat/trysocket.c
2004-01-08 17:12:39 +00:00

8 lines
133 B
C

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
main() {
int fd=socket(PF_INET,SOCK_STREAM,IPPROTO_TCP);
}