xref: /dflybsd-src/test/testcases/posixipc/open_invalid_path/open_invalid_path.c (revision 6af9a77b394698e42f3a7ec6126497a3fc2fd470)
1 #include <common.h>
2 
3 int
4 main(void) {
5 	int retval = 0;
6 
7 	retval = sem_open_should_fail("blah", 0, 0777, 1, ENOENT);
8 
9 	return retval;
10 }
11