blob: b563de9d003a1252ccc7a0d4cd9e0ed90c5ca63e [file] [log] [blame]
#include "tests.h"
#include <stdio.h>
#include <unistd.h>
int
main(void)
{
pid_t pid = getpid();
printf("getsid(%d) = %d\n", pid, getsid(pid));
puts("+++ exited with 0 +++");
return 0;
}