/ appl / dceutils / dpagaix.c
dpagaix.c
 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   }