summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2016-01-22 22:27:01 +0000
committerdholland <dholland@NetBSD.org>2016-01-22 22:27:01 +0000
commitcb41ca2ad4d5caac6eb03223e711abe60c14e4f2 (patch)
tree8996bacdb3403bce27439eafe827c0d3cc00d68c /include
parent4d168c45e769e3051d57cd6a8feaf022ee911da1 (diff)
Needs stddef.h for size_t.
Diffstat (limited to 'include')
-rw-r--r--include/bm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/bm.h b/include/bm.h
index 228c9baa9b5..6ba891d7b9e 100644
--- a/include/bm.h
+++ b/include/bm.h
@@ -1,4 +1,4 @@
-/* $NetBSD: bm.h,v 1.6 2016/01/22 21:55:57 dholland Exp $ */
+/* $NetBSD: bm.h,v 1.7 2016/01/22 22:27:01 dholland Exp $ */
/*-
* Copyright (c) 1994
@@ -37,6 +37,8 @@
#ifndef _BM_H_
#define _BM_H_
+#include <stddef.h>
+
typedef struct {
unsigned char *pat; /* pattern */
size_t patlen; /* pattern length */