libbsd: Branch 'master' - 3 commits
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Mon Dec 21 16:29:34 UTC 2020
man/vis.3bsd | 1 +
src/libbsd.map | 4 ++++
src/nlist.c | 2 ++
3 files changed, 7 insertions(+)
New commits:
commit eb445425ff4559070328410574b135dcda4a96e3
Author: Guillem Jover <guillem at hadrons.org>
Date: Mon Aug 12 23:52:10 2019 +0200
Do not define SIZE_T_MAX if already defined
diff --git a/src/nlist.c b/src/nlist.c
index 228c220..d22fa19 100644
--- a/src/nlist.c
+++ b/src/nlist.c
@@ -43,7 +43,9 @@
#include "local-elf.h"
+#ifndef SIZE_T_MAX
#define SIZE_T_MAX 0xffffffffU
+#endif
/* Note: This function is used by libkvm0, so we need to export it.
* It is not declared in the include files though. */
commit 59f6a95609203dd2f21a78afe94cf58bb89d2dad
Author: Guillem Jover <guillem at hadrons.org>
Date: Mon Aug 12 23:25:20 2019 +0200
man: Add missing doc-operating-system-NetBSD string variable
Fixes: commit 99320b9168ffb0112def1a712e8d59441d1b46d9.
diff --git a/man/vis.3bsd b/man/vis.3bsd
index 00d9ebe..7895af4 100644
--- a/man/vis.3bsd
+++ b/man/vis.3bsd
@@ -529,6 +529,7 @@ The destination buffer size is not large enough to perform the conversion.
.%O "RFC 2045"
.Re
.Sh HISTORY
+.ds doc-operating-system-NetBSD-7.0 7.0
The
.Fn vis ,
.Fn strvis ,
commit 3548c5f6bf10fd39336356233faedfea3f723592
Author: Guillem Jover <guillem at hadrons.org>
Date: Mon Aug 26 05:39:17 2019 +0200
Add missing strnvisx() to the symbols script
Fixes: commit 2d7de186e9cb19a756c0630ee85cb3f2d29b3484.
diff --git a/src/libbsd.map b/src/libbsd.map
index caa5cd1..1416c6f 100644
--- a/src/libbsd.map
+++ b/src/libbsd.map
@@ -181,3 +181,7 @@ LIBBSD_0.10.0 {
err;
errx;
} LIBBSD_0.9.1;
+
+LIBBSD_0.11.0 {
+ strnvisx;
+} LIBBSD_0.10.0;
More information about the libbsd
mailing list