1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

Include <gmp.h> outside of extern "C" block. (Note that numbers.h

still includes gmp.h to make it self-contained.)
This commit is contained in:
Marius Vollmer 2004-09-24 02:05:18 +00:00
parent a8d7ba1165
commit f7e6665450

View file

@ -1,7 +1,7 @@
#ifndef SCM_LIBGUILE_H
#define SCM_LIBGUILE_H
/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2002, 2003 Free Software Foundation, Inc.
/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2002, 2003, 2004 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -43,6 +43,10 @@
* If you do not wish that, delete this exception notice. */
/* This needs to be included outside of the extern "C" block.
*/
#include <gmp.h>
#ifdef __cplusplus
extern "C" {
#endif