blob: d770c43a825d2bc26daca9d68ab6fdbc89b195a1 [file] [log] [blame]
/* Check decoding of shutdown syscall. */
#include "tests.h"
#include <stdio.h>
#include <sys/socket.h>
int
main(void)
{
int rc = shutdown(-1, SHUT_RDWR);
printf("shutdown(-1, SHUT_RDWR) = %d %s (%m)\n", rc, errno2name());
puts("+++ exited with 0 +++");
return 0;
}