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 issetugid(void)14issetugid(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