]> git.ozlabs.org Git - ppp.git/blobdiff - modules/ppp_mod.h
pppd.8: Document netmask option
[ppp.git] / modules / ppp_mod.h
index 2f73e1cf5d3ac2e09e6f7b714fa66aa9274997f5..792c4d4fc5b5feb129dac73df19447d50e785670 100644 (file)
@@ -56,7 +56,7 @@
 #include <sys/proc.h>
 #define NOTSUSER()             (suser(u.u_procp->p_rcred, &u.u_acflag) ? EPERM : 0)
 
-#include "ppp_osf.h"
+/* #include "ppp_osf.h" */
 
 #endif /* __osf__ */
 
@@ -143,10 +143,10 @@ typedef int minor_t;
  */
 #ifdef SVR4
 #define MOD_OPEN_DECL(name)    \
-static int name __P((queue_t *, dev_t *, int, int, cred_t *))
+static int name(queue_t *, dev_t *, int, int, cred_t *)
 
 #define MOD_CLOSE_DECL(name)   \
-static int name __P((queue_t *, int, cred_t *))
+static int name(queue_t *, int, cred_t *)
 
 #define MOD_OPEN(name)                         \
 static int name(q, devp, flag, sflag, credp)   \
@@ -168,10 +168,10 @@ static int name(q, flag, credp)   \
 
 #else  /* not SVR4 */
 #define MOD_OPEN_DECL(name)    \
-static int name __P((queue_t *, int, int, int))
+static int name(queue_t *, int, int, int)
 
 #define MOD_CLOSE_DECL(name)   \
-static int name __P((queue_t *, int))
+static int name(queue_t *, int)
 
 #define MOD_OPEN(name)         \
 static int name(q, dev, flag, sflag)   \