mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 19:50:24 +02:00
Fix missing includes in tests.
* test-suite/standalone/test-scm-c-read.c: * test-suite/standalone/test-scm-to-latin1-string.c: Add <string.h>.
This commit is contained in:
parent
2eb8fa1751
commit
55317a5dd3
2 changed files with 7 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 2008, 2014 Free Software Foundation, Inc.
|
/* Copyright (C) 2008,2014,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
|
||||||
|
@ -25,8 +25,9 @@
|
||||||
|
|
||||||
#undef NDEBUG
|
#undef NDEBUG
|
||||||
|
|
||||||
#include <libguile.h>
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <libguile.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 2011 Free Software Foundation, Inc.
|
/* Copyright (C) 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
|
||||||
|
@ -21,8 +21,10 @@
|
||||||
# include <config.h>
|
# include <config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <libguile.h>
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include <libguile.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
This outputs:
|
This outputs:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue