diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2004-01-04 21:41:13 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2004-01-04 21:41:13 +0000 |
commit | 43690b191f68bb8de7c7147583e611c44d83e993 (patch) | |
tree | ae87cb6d931795b686f9d5b5f3dd6c3e128134ce /usr.sbin/mopd | |
parent | 1d45d7a7bed5dadca658f4f64bfa6ec93c741507 (diff) |
gcc3 doesn't like varargs, it was found that the varargs.h inclusion is
unnecessary for these files, delete. ok espie@
Diffstat (limited to 'usr.sbin/mopd')
-rw-r--r-- | usr.sbin/mopd/common/pf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/mopd/common/pf.c b/usr.sbin/mopd/common/pf.c index 86089636ac3..e24c9903944 100644 --- a/usr.sbin/mopd/common/pf.c +++ b/usr.sbin/mopd/common/pf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.c,v 1.8 2003/12/01 00:56:51 avsm Exp $ */ +/* $OpenBSD: pf.c,v 1.9 2004/01/04 21:41:12 drahn Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -29,7 +29,7 @@ */ #ifndef LINT -static const char rcsid[] = "$OpenBSD: pf.c,v 1.8 2003/12/01 00:56:51 avsm Exp $"; +static const char rcsid[] = "$OpenBSD: pf.c,v 1.9 2004/01/04 21:41:12 drahn Exp $"; #endif #include <stdio.h> @@ -53,7 +53,6 @@ static const char rcsid[] = "$OpenBSD: pf.c,v 1.8 2003/12/01 00:56:51 avsm Exp $ #include <string.h> #include <syslog.h> -#include <varargs.h> #include "common/mopdef.h" |