blob: b563de9d003a1252ccc7a0d4cd9e0ed90c5ca63e [file] [log] [blame]
Fei Jie8bfe0d52016-04-21 09:40:01 +08001#include "tests.h"
2#include <stdio.h>
3#include <unistd.h>
4
5int
6main(void)
7{
8 pid_t pid = getpid();
9 printf("getsid(%d) = %d\n", pid, getsid(pid));
10
11 puts("+++ exited with 0 +++");
12 return 0;
13}