Move the logit() prototype so parse.y will see it.
authorjsg <jsg@openbsd.org>
Tue, 12 May 2015 03:23:15 +0000 (03:23 +0000)
committerjsg <jsg@openbsd.org>
Tue, 12 May 2015 03:23:15 +0000 (03:23 +0000)
ok yasuoka@

usr.sbin/npppd/npppd/log.c
usr.sbin/npppd/npppd/log.h

index deb85fd..10c5db9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: log.c,v 1.2 2012/11/13 17:10:40 yasuoka Exp $ */
+/*     $OpenBSD: log.c,v 1.3 2015/05/12 03:23:15 jsg Exp $ */
 
 /*
  * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -35,8 +35,6 @@
 int     debug;
 extern int debugsyslog;
 
-void    logit(int, const char *, ...);
-
 void
 log_init(int n_debug)
 {
index ce37b7e..70a20a2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: log.h,v 1.1 2012/11/13 17:10:40 yasuoka Exp $ */
+/*     $OpenBSD: log.h,v 1.2 2015/05/12 03:23:15 jsg Exp $ */
 
 /*
  * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -29,5 +29,6 @@ void        log_info (const char *, ...);
 void        log_debug (const char *, ...);
 void        fatal (const char *);
 void        fatalx (const char *);
+void        logit(int, const char *, ...);
 
 #endif /* _LOG_H_ */