summary refs log tree commit diff
path: root/src/uidgid.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uidgid.h')
-rw-r--r--src/uidgid.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/uidgid.h b/src/uidgid.h
deleted file mode 100644
index 13cacbc..0000000
--- a/src/uidgid.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef UIDGID_H
-#define UIDGID_H
-
-#include <sys/types.h>
-
-struct uidgid {
-  uid_t uid;
-  gid_t gid[61];
-  int gids;
-};
-
-/* user */
-extern unsigned int uidgid_get(struct uidgid *, char *);
-
-/* [:]user[:group[:group]...] */
-extern unsigned int uidgids_get(struct uidgid *, char *);
-
-#endif