Merge 1.8.0~pre4 packaging into master
[pkg-k5-afs_openafs.git] / src / tsm41 / aix41_ident.c
blobc6acd3491aecb0bb5687071ad1d590e210f1fbbb
1 /*
2 * Copyright 2000, International Business Machines Corporation and others.
3 * All Rights Reserved.
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 */
10 #include <afsconfig.h>
11 #include <afs/param.h>
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>
27 #include <afs/kauth.h>
28 #include <afs/kautils.h>
30 #include "aix_ident_prototypes.h"
32 int
33 afs_getgrset(char *userName)
35 return NULL;
38 struct group *
39 afs_getgrgid(int id)
41 return NULL;
44 struct group *
45 afs_getgrnam(char *name)
47 return NULL;
50 int
51 afs_getpwnam(int id)
53 return NULL;
56 int
57 afs_getpwuid(char *name)
59 return NULL;
62 #endif /* AFS_AIX41_ENV && !AFS_AIX51_ENV */