From 47c2d3cb2c5fc10e43a538cf50b7ae639e7cbc3d Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 22 Jan 2013 14:23:55 +0900 Subject: [PATCH] Include stdint.h in regex.c It seems stdint.h gets included automatically in windows builds. --- libs/gib/regex.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/gib/regex.c b/libs/gib/regex.c index 82caa884f..1d6e19dc4 100644 --- a/libs/gib/regex.c +++ b/libs/gib/regex.c @@ -28,6 +28,7 @@ /* We need this for `regex.h', and perhaps for the Emacs include files. */ #include +#include #ifdef HAVE_CONFIG_H #include "config.h"