Fix aix/afs brokenness.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@614 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1996-08-04 16:49:38 +00:00
parent dd1417040f
commit dfbbb90006
6 changed files with 689 additions and 19 deletions

27
lib/kafs/afslib.c Normal file
View File

@@ -0,0 +1,27 @@
/*
* This file is only used with AIX
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
RCSID("$Id$");
#endif
#include <sys/types.h>
#include "kafs.h"
#include "afssysdefs.h"
int
aix_pioctl(char *a_path,
int o_opcode,
struct ViceIoctl *a_paramsP,
int a_followSymlinks)
{
return lpioctl(a_path, o_opcode, a_paramsP, a_followSymlinks);
}
int
aix_setpag(void)
{
return lsetpag();
}