Add missing standard include (fixes #644)

... which is apparently needed on some systems. I guess we might
be missing includes all over the place.
This commit is contained in:
Tamás Bálint Misius 2019-06-12 22:51:55 +02:00
parent 3a845051be
commit 92a748bf76
No known key found for this signature in database
GPG Key ID: 5B472A12F6ECA9F2

View File

@ -1,6 +1,7 @@
#include "CommandInterface.h"
#include <cstring>
#include <cstddef>
#if !defined(WIN) || defined(__GNUC__)
#include <strings.h>
#endif