From: <fr...@us...> - 2021-03-15 10:58:05
|
This is an automated email from the git hooks/post-receive-user script. fredm pushed a commit to branch master in repository libspectrum. View the commit online: https://sourceforge.net/p/fuse-emulator/libspectrum/ci/8c4f2c4260e0717777116065e96c0efbe3c39119/ The following commit(s) were added to refs/heads/master by this push: new 8c4f2c4 Include <string.h> for 'strlen' and 'memcpy' 8c4f2c4 is described below commit 8c4f2c4260e0717777116065e96c0efbe3c39119 Author: Fredrick Meunier <fr...@sp...> AuthorDate: Mon Mar 15 21:56:54 2021 +1100 Include <string.h> for 'strlen' and 'memcpy' --- utilities.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utilities.c b/utilities.c index 9555154..eb0fa44 100644 --- a/utilities.c +++ b/utilities.c @@ -23,6 +23,10 @@ #include "config.h" +#ifdef HAVE_STRING_H +#include <string.h> +#endif /* #ifdef HAVE_STRING_H */ + #include "internals.h" #define TZX_HZ 3500000 |