Module Name:    src
Committed By:   thorpej
Date:           Thu Jan 21 15:44:14 UTC 2021

Modified Files:
        src/sys/lib/libkern: pmatch.c

Log Message:
Allow this to be built for the strlist.c unit tests.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/lib/libkern/pmatch.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/lib/libkern/pmatch.c
diff -u src/sys/lib/libkern/pmatch.c:1.6 src/sys/lib/libkern/pmatch.c:1.7
--- src/sys/lib/libkern/pmatch.c:1.6	Sat Mar 14 21:04:24 2009
+++ src/sys/lib/libkern/pmatch.c	Thu Jan 21 15:44:14 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmatch.c,v 1.6 2009/03/14 21:04:24 dsl Exp $	*/
+/*	$NetBSD: pmatch.c,v 1.7 2021/01/21 15:44:14 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 1980, 1991 The Regents of the University of California.
@@ -30,7 +30,14 @@
  */
 
 #include <sys/param.h>
+
+/* So we can build this in userland for the tests in strlist.c */
+#if defined(_KERNEL) || defined(_STANDALONE)
 #include <lib/libkern/libkern.h>
+#else
+int pmatch(const char *, const char *, const char **);
+#endif
+
 /*
  * pmatch():
  *	Return 2 on exact match.

Reply via email to