/* Test whether a basic socket invocation works. */

#include <sys/socket.h>

#include "../basic.h"

int main(void)
{
	int listen_fd = socket(AF_INET, SOCK_STREAM, 0);
	if ( listen_fd < 0 )
		err(1, "socket");
	return 0;
}
