initgroups.c revision 233294
1184299Snwhitehorn/*
2184299Snwhitehorn * Copyright (c) 1995, 1996, 1997 Kungliga Tekniska H��gskolan
3184299Snwhitehorn * (Royal Institute of Technology, Stockholm, Sweden).
4184299Snwhitehorn * All rights reserved.
5184299Snwhitehorn *
6184299Snwhitehorn * Redistribution and use in source and binary forms, with or without
7184299Snwhitehorn * modification, are permitted provided that the following conditions
8184299Snwhitehorn * are met:
9184299Snwhitehorn *
10184299Snwhitehorn * 1. Redistributions of source code must retain the above copyright
11184299Snwhitehorn *    notice, this list of conditions and the following disclaimer.
12184299Snwhitehorn *
13184299Snwhitehorn * 2. Redistributions in binary form must reproduce the above copyright
14184299Snwhitehorn *    notice, this list of conditions and the following disclaimer in the
15184299Snwhitehorn *    documentation and/or other materials provided with the distribution.
16184299Snwhitehorn *
17184299Snwhitehorn * 3. Neither the name of the Institute nor the names of its contributors
18184299Snwhitehorn *    may be used to endorse or promote products derived from this software
19184299Snwhitehorn *    without specific prior written permission.
20184299Snwhitehorn *
21184299Snwhitehorn * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22184299Snwhitehorn * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23184299Snwhitehorn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24184299Snwhitehorn * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25184299Snwhitehorn * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26184299Snwhitehorn * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27184299Snwhitehorn * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28184299Snwhitehorn * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29184299Snwhitehorn * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30184299Snwhitehorn * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31184299Snwhitehorn * SUCH DAMAGE.
32184299Snwhitehorn */
33184299Snwhitehorn
34184299Snwhitehorn#include <config.h>
35184299Snwhitehorn
36184299Snwhitehorn#include "roken.h"
37184299Snwhitehorn
38184299SnwhitehornROKEN_LIB_FUNCTION int ROKEN_LIB_CALL
39184299Snwhitehorninitgroups(const char *name, gid_t basegid)
40184299Snwhitehorn{
41184299Snwhitehorn  return 0;
42184299Snwhitehorn}
43184299Snwhitehorn