summaryrefslogtreecommitdiff
path: root/mpz/gcdext.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2000-04-28 23:58:42 +0200
committerKevin Ryde <user42@zip.com.au>2000-04-28 23:58:42 +0200
commit00befba16c51a293dd94802e35f9f659070f2127 (patch)
treedc7691538e72f7f43bcbb921598c25988e90e4fd /mpz/gcdext.c
parent3254eb358bc06da0f6d423b9fbaf8ec786e039f6 (diff)
downloadgmp-00befba16c51a293dd94802e35f9f659070f2127.tar.gz
Use <stdio.h> for NULL.
Diffstat (limited to 'mpz/gcdext.c')
-rw-r--r--mpz/gcdext.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mpz/gcdext.c b/mpz/gcdext.c
index 2632dac09..2849aca9f 100644
--- a/mpz/gcdext.c
+++ b/mpz/gcdext.c
@@ -1,8 +1,8 @@
/* mpz_gcdext(g, s, t, a, b) -- Set G to gcd(a, b), and S and T such that
g = as + bt.
-Copyright (C) 1991, 1993, 1994, 1995, 1996, 1997 Free Software Foundation,
-Inc.
+Copyright (C) 1991, 1993, 1994, 1995, 1996, 1997, 2000 Free Software
+Foundation, Inc.
This file is part of the GNU MP Library.
@@ -21,6 +21,7 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. */
+#include <stdio.h> /* for NULL */
#include "gmp.h"
#include "gmp-impl.h"