Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Dec 2018 18:03:18 +0000 (UTC)
From:      Yuri Pankov <yuripv@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r341639 - head/lib/libc/gen
Message-ID:  <201812061803.wB6I3IgZ074181@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuripv
Date: Thu Dec  6 18:03:18 2018
New Revision: 341639
URL: https://svnweb.freebsd.org/changeset/base/341639

Log:
  syslog(3): stdarg.h is needed only for vsyslog()
  
  Reported by:	Brian Wood <woodbrian77@gmail.com>
  Reviewed by:	asomers, ngie
  Differential revision:	https://reviews.freebsd.org/D18334

Modified:
  head/lib/libc/gen/syslog.3

Modified: head/lib/libc/gen/syslog.3
==============================================================================
--- head/lib/libc/gen/syslog.3	Thu Dec  6 17:29:37 2018	(r341638)
+++ head/lib/libc/gen/syslog.3	Thu Dec  6 18:03:18 2018	(r341639)
@@ -28,7 +28,7 @@
 .\"     @(#)syslog.3	8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd April 12, 2018
+.Dd November 25, 2018
 .Dt SYSLOG 3
 .Os
 .Sh NAME
@@ -42,17 +42,18 @@
 .Lb libc
 .Sh SYNOPSIS
 .In syslog.h
-.In stdarg.h
 .Ft void
 .Fn syslog "int priority" "const char *message" "..."
 .Ft void
-.Fn vsyslog "int priority" "const char *message" "va_list args"
-.Ft void
 .Fn openlog "const char *ident" "int logopt" "int facility"
 .Ft void
 .Fn closelog void
 .Ft int
 .Fn setlogmask "int maskpri"
+.In syslog.h
+.In stdarg.h
+.Ft void
+.Fn vsyslog "int priority" "const char *message" "va_list args"
 .Sh DESCRIPTION
 The
 .Fn syslog



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812061803.wB6I3IgZ074181>