vfs: check userland buffers before reading them.
[haiku.git] / src / libs / bsd / issetugid.c
blob71f5128068cb6b71f1cbb5b29867435f13d5bb72
1 /*
2 * Copyright 2006, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Axel Dörfler, axeld@pinc-software.de
7 */
10 #include <unistd.h>
13 int
14 issetugid(void)
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;