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