1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- parse/glob.c.orig Wed Apr 2 18:43:33 2003
+++ parse/glob.c Fri May 2 15:54:46 2003
@@ -51,6 +51,7 @@
#include "al.h"
#include "parse.h"
#include "ox.h"
+#include "version.h"
#if defined(PARI)
#include "genpari.h"
#endif
@@ -707,11 +708,8 @@
printf("Copyright 2000-2003, Risa/Asir committers, http://www.openxm.org/.\n");
printf("GC 6.1(alpha5) copyright 2001, H-J. Boehm, A. J. Demers, Xerox, SGI, HP.\n");
#if PARI
-#if 0
- printf("PARI 2.2.4, copyright (C) 2002 The PARI Group.\n");
-#endif
- printf("PARI 2.0.17, copyright 1989-1999, C. Batut, K. Belabas, D. Bernardi,\n");
- printf(" H. Cohen and M. Olivier.\n");
+ printf("%s.\n",PARIVERSION);
+ printf("copyright (C) 2002 The PARI Group.\n");
#endif
}
|