diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-20 14:47:27 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-20 14:47:27 +0200 |
commit | e605b518ee472d18e3bb3bcfb8840abfa8486372 (patch) | |
tree | 2c560f58706b36622390ed4a0ddf7b55fa68c1a0 | |
parent | 2b4ecafab8cb0d57b2a82ac650274b7b7ae7db83 (diff) | |
download | guile-e605b518ee472d18e3bb3bcfb8840abfa8486372.tar.gz |
Fix include in test-ffi-lib
* test-suite/standalone/test-ffi-lib.c: Add missing <string.h> include.
-rw-r--r-- | test-suite/standalone/test-ffi-lib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test-suite/standalone/test-ffi-lib.c b/test-suite/standalone/test-ffi-lib.c index f26533958..d1658fe18 100644 --- a/test-suite/standalone/test-ffi-lib.c +++ b/test-suite/standalone/test-ffi-lib.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010, 2011 Free Software Foundation, Inc. +/* Copyright (C) 2010, 2011, 2018 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -20,6 +20,8 @@ # include <config.h> #endif +#include <string.h> + #include <libguile.h> void test_ffi_v_ (void); |