summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/setgid.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/setgid.c')
-rw-r--r--cpukit/libcsupport/src/setgid.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/cpukit/libcsupport/src/setgid.c b/cpukit/libcsupport/src/setgid.c
new file mode 100644
index 0000000000..908899cf72
--- /dev/null
+++ b/cpukit/libcsupport/src/setgid.c
@@ -0,0 +1,21 @@
+/*
+ * $Id$
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <rtems/userenv.h>
+
+/*
+ *
+ * 4.2.2 Set User and Group IDs, P1003.1b-1993, p. 84
+ */
+int setgid(
+ gid_t gid
+)
+{
+ _POSIX_types_Gid = gid;
+ return 0;
+}