1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

Fix include in test-ffi-lib

* test-suite/standalone/test-ffi-lib.c: Add missing <string.h> include.
This commit is contained in:
Andy Wingo 2018-06-20 14:47:27 +02:00
parent 2b4ecafab8
commit e605b518ee

View file

@ -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 * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License * modify it under the terms of the GNU Lesser General Public License
@ -20,6 +20,8 @@
# include <config.h> # include <config.h>
#endif #endif
#include <string.h>
#include <libguile.h> #include <libguile.h>
void test_ffi_v_ (void); void test_ffi_v_ (void);