Port emacsclient to FreeBSD 11 etc.

* lib-src/emacsclient.c: Include <string.h>.  This is needed on
platforms like FreeBSD 11 that use code involving strlen etc., and
because <config.h> no longer includes string.h.
This commit is contained in:
Paul Eggert 2016-11-08 08:54:23 -08:00
parent d3e22a1210
commit 86baa208f8

View file

@ -75,6 +75,7 @@ char *w32_getenv (const char *);
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
#include <unistd.h>