source: heimdal/trunk/appl/dceutils/dpagaix.c@ 4

Last change on this file since 4 was 1, checked in by Paul Smedley, 10 years ago

Initial commit of Heimdal 1.5.3

File size: 516 bytes
Line 
1/*
2 * dpagaix.c
3 * On AIX we need to get the kernel extentions
4 * with the DFS kafs_syscall in it.
5 * We might be running on a system
6 * where DFS is not active.
7 * So we use this dummy routine which
8 * might not load to do the dirty work
9 *
10 * DCE does this with the /usr/lib/drivers/dfsloadobj
11 *
12 */
13
14 int dpagaix(parm1, parm2, parm3, parm4, parm5, parm6)
15 int parm1;
16 int parm2;
17 int parm3;
18 int parm4;
19 int parm5;
20 int parm6;
21 {
22 return(kafs_syscall(parm1, parm2, parm3, parm4, parm5, parm6));
23 }
Note: See TracBrowser for help on using the repository browser.