
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@614 ec53bebd-3082-4978-b11e-865c3cabbd6b
28 lines
400 B
C
28 lines
400 B
C
/*
|
|
* 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();
|
|
}
|