aboutsummaryrefslogtreecommitdiffstats
path: root/guts/setgroups.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/setgroups.c')
-rw-r--r--guts/setgroups.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/guts/setgroups.c b/guts/setgroups.c
deleted file mode 100644
index 31b2b57..0000000
--- a/guts/setgroups.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Copyright (c) 2010 Wind River Systems; see
- * guts/COPYRIGHT for information.
- *
- * static int
- * wrap_setgroups(size_t size, const gid_t *list) {
- * int rc = -1;
- */
-
- /* let gcc know we're ignoring these */
- (void) size;
- (void) list;
- /* you always have all group privileges. we're like magic! */
- rc = 0;
-
-/* return rc;
- * }
- */