summaryrefslogtreecommitdiff
path: root/libguile.h
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2004-09-24 02:05:18 +0000
committerMarius Vollmer <mvo@zagadka.de>2004-09-24 02:05:18 +0000
commitf7e666545025dababb029a1dfcfd858a27d67805 (patch)
treea1dc5ac5df35d0fb6bb76ef3dbae148ecbcbb109 /libguile.h
parenta8d7ba11650fa53da2cdffe615d64c1f3005c2b1 (diff)
downloadguile-f7e666545025dababb029a1dfcfd858a27d67805.tar.gz
Include <gmp.h> outside of extern "C" block. (Note that numbers.h
still includes gmp.h to make it self-contained.)
Diffstat (limited to 'libguile.h')
-rw-r--r--libguile.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libguile.h b/libguile.h
index 3be6dec63..7ccbd33b2 100644
--- a/libguile.h
+++ b/libguile.h
@@ -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