Remove the RCSID macro
[openafs.git] / src / tsm41 / aix41_ident.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <afsconfig.h>
11 #include <afs/param.h>
12
13
14 #if defined(AFS_AIX41_ENV) && !defined(AFS_AIX51_ENV)
15 #include <sys/types.h>
16 #include <sys/param.h>
17 #include <stdio.h>
18 #include <locale.h>
19 #include <nl_types.h>
20 #include <pwd.h>
21 #include <netdb.h>
22 #include <sys/socket.h>
23 #include <sys/file.h>
24 #include <errno.h>
25 #include <usersec.h>
26
27 #include <afs/kauth.h>
28 #include <afs/kautils.h>
29
30 #include "aix_ident_prototypes.h"
31
32 int
33 afs_getgrset(char *userName)
34 {
35     return NULL;
36 }
37
38 struct group *
39 afs_getgrgid(int id)
40 {
41     return NULL;
42 }
43
44 struct group *
45 afs_getgrnam(char *name)
46 {
47     return NULL;
48 }
49
50 int
51 afs_getpwnam(int id)
52 {
53     return NULL;
54 }
55
56 int
57 afs_getpwuid(char *name)
58 {
59     return NULL;
60 }
61
62 #endif /* AFS_AIX41_ENV && !AFS_AIX51_ENV */