1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| /* 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;
| }
|
|