summaryrefslogtreecommitdiff
path: root/mcon/U/groupstype.U
diff options
context:
space:
mode:
authorManoj Srivastava <srivasta@debian.org>2003-12-01 17:11:15 +0000
committerManoj Srivastava <srivasta@debian.org>2003-12-01 17:11:15 +0000
commit371472d9fb6a936149b105a6563a0550d35bdf1a (patch)
tree6d23751e44a7dddf4e29918551f1ea0513352622 /mcon/U/groupstype.U
Initial import of upstream branch
Initial import of upstream branch git-archimport-id: srivasta@debian.org--2003-primary/dist--upstream--3.70--base-0
Diffstat (limited to 'mcon/U/groupstype.U')
-rw-r--r--mcon/U/groupstype.U62
1 files changed, 62 insertions, 0 deletions
diff --git a/mcon/U/groupstype.U b/mcon/U/groupstype.U
new file mode 100644
index 0000000..55b5638
--- /dev/null
+++ b/mcon/U/groupstype.U
@@ -0,0 +1,62 @@
+?RCS: $Id: groupstype.U,v 3.0.1.2 1994/10/29 16:18:08 ram Exp $
+?RCS:
+?RCS: Copyright (c) 1991-1993, Raphael Manfredi
+?RCS:
+?RCS: You may redistribute only under the terms of the Artistic Licence,
+?RCS: as specified in the README file that comes with the distribution.
+?RCS: You may reuse parts of this distribution only within the terms of
+?RCS: that same Artistic Licence; a copy of which may be found at the root
+?RCS: of the source tree for dist 3.0.
+?RCS:
+?RCS: Original Author: Andy Dougherty <doughera@lafcol.lafayette.edu>
+?RCS:
+?RCS: $Log: groupstype.U,v $
+?RCS: Revision 3.0.1.2 1994/10/29 16:18:08 ram
+?RCS: patch36: no longer uses Setvar to set 'groupstype' (ADO)
+?RCS: patch36: typo fix in the word 'argument' (ADO)
+?RCS:
+?RCS: Revision 3.0.1.1 1994/06/20 07:00:18 ram
+?RCS: patch30: created by ADO
+?RCS:
+?MAKE:groupstype: gidtype d_getgrps Myread Oldconfig Findhdr cat
+?MAKE: -pick add $@ %<
+?INIT:groupstype=''
+?S:groupstype:
+?S: This variable defines Groups_t to be something like gid_t, int,
+?S: ushort, or whatever type is used for the second argument to
+?S: getgroups(). Usually, this is the same of gidtype, but
+?S: sometimes it isn't.
+?S:.
+?C:Groups_t (GROUPSTYPE):
+?C: This symbol holds the type used for the second argument to
+?C: getgroups(). Usually, this is the same of gidtype, but
+?C: sometimes it isn't. It can be int, ushort, uid_t, etc...
+?C: It may be necessary to include <sys/types.h> to get any
+?C: typedef'ed information. This is only required if you have
+?C: getgroups().
+?C:.
+?H:?%<:#ifdef HAS_GETGROUPS
+?H:?%<:#define Groups_t $groupstype /* Type for 2nd arg to getgroups() */
+?H:?%<:#endif
+?H:.
+?W:%<:getgroups HAS_GETGROUPS
+: Find type of 2nd arg to getgroups
+echo " "
+case "$d_getgrps" in
+'define')
+ case "$groupstype" in
+ '') dflt="$gidtype" ;;
+ *) dflt="$groupstype" ;;
+ esac
+ $cat <<EOM
+What is the type of the second argument to getgroups()? Usually this
+is the same as group ids, $gidtype, but not always.
+
+EOM
+ rp='What type is the second argument to getgroups()?'
+ . ./myread
+ groupstype="$ans"
+ ;;
+*) groupstype="$gidtype";;
+esac
+