From ae490069eafa68356405fc9719910a4c533f14ea Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 9 Dec 2016 18:04:27 +0200 Subject: [PATCH] Fix compilation on Debian GNU/Linux * src/thread.h: Include sys/types.h, for ssize_t that regex.h uses. Reported by Robert Marshall . --- src/thread.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/thread.h b/src/thread.h index d4cae360f68..64448007531 100644 --- a/src/thread.h +++ b/src/thread.h @@ -19,6 +19,7 @@ along with GNU Emacs. If not, see . */ #ifndef THREAD_H #define THREAD_H +#include /* for ssize_t used by regex.h */ #include "regex.h" #ifdef WINDOWSNT -- 2.39.2