Marcel Telka, 2015-02-10 11:45 PM
#include <stdio.h>
#include <xti.h>
#include <fcntl.h>
int
main(void)
{
int f = t_open("/dev/tcp", O_RDWR, NULL);
if (f < 0)
printf("t_open failed\n");
return 0;
}