From f014a8fd4cbea56c3ecd23a5b2cbb7c38d905253 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 3 Jan 2016 03:00:45 +0100 Subject: [PATCH] proto.h: Add missing unistd.h #include. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ssize_t and size_t usage requires the unistd.h #include. Thanks to Daniel Glöckner for the bug report. This fixes bug #721. --- include/libsigrok/proto.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/libsigrok/proto.h b/include/libsigrok/proto.h index c10f7c10..ea9d4779 100644 --- a/include/libsigrok/proto.h +++ b/include/libsigrok/proto.h @@ -20,6 +20,8 @@ #ifndef LIBSIGROK_PROTO_H #define LIBSIGROK_PROTO_H +#include + /** * @file *