1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

Remove error.h include from _scm.h.

* libguile/pairs.h: Add missing error.h include.
* libguile/_scm.h: Remove error.h include.
This commit is contained in:
Andy Wingo 2018-06-17 22:07:03 +02:00
parent 08fd826d0c
commit 03c6485eea
2 changed files with 3 additions and 2 deletions

View file

@ -36,7 +36,6 @@
/* Include headers for those files central to the implementation. The
rest should be explicitly #included in the C files themselves. */
#include "libguile/error.h" /* Everyone signals errors. */
#include "libguile/print.h" /* Everyone needs to print. */
#include "libguile/pairs.h" /* Everyone conses. */
#include "libguile/list.h" /* Everyone makes lists. */

View file

@ -3,7 +3,8 @@
#ifndef SCM_PAIRS_H
#define SCM_PAIRS_H
/* Copyright (C) 1995,1996,2000,2001, 2004, 2006, 2008, 2009, 2010, 2012 Free Software Foundation, Inc.
/* Copyright (C) 1995-1996,2000-2001,2004,2006,2008-2010,2012,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
@ -25,6 +26,7 @@
#include "libguile/__scm.h"
#include "libguile/error.h"
#include "libguile/gc.h"