2-9 socket()システムコールを失敗させる
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
int
main()
{
int sock;
sock = socket(3000, 4000, 5000);
if (sock < 0) {
perror("socket");
printf("%d\n", errno);
return 1;
}
return 0;
}