mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 18:28:55 -04:00
17 lines
499 B
C
17 lines
499 B
C
$NetBSD: patch-sql_sql__string.h,v 1.1.1.1 2014/12/01 05:58:03 jnemeth Exp $
|
|
|
|
Portability: include <bstring.h> if exists.
|
|
|
|
--- sql/sql_string.h.orig 2013-04-05 12:27:18.000000000 +0000
|
|
+++ sql/sql_string.h
|
|
@@ -22,6 +22,9 @@
|
|
#include "my_sys.h" /* alloc_root, my_free, my_realloc */
|
|
#include "m_string.h" /* TRASH */
|
|
|
|
+#ifdef NEEDS_BSTRING_H
|
|
+#include <bstring.h> /* defines bzero() */
|
|
+#endif
|
|
|
|
/**
|
|
A wrapper class for null-terminated constant strings.
|