xref: /haiku/src/libs/bsd/issetugid.c (revision 21258e2674226d6aa732321b6f8494841895af5f)
1 /*
2  * Copyright 2006, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Axel Dörfler, axeld@pinc-software.de
7  */
8 
9 
10 #include <unistd.h>
11 
12 
13 int
14 issetugid(void)
15 {
16 	// TODO: as long as we're effectively a single user system, this will do,
17 	//	but we might want to have real kernel support for this.
18 	return 1;
19 }
20