[BACK]Return to file.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / builtin

Diff for /OpenXM_contrib2/asir2000/builtin/file.c between version 1.16 and 1.17

version 1.16, 2002/10/01 09:58:48 version 1.17, 2003/02/14 22:29:07
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/builtin/file.c,v 1.15 2001/10/09 01:36:05 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/file.c,v 1.16 2002/10/01 09:58:48 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 54 
Line 54 
 #if !defined(VISUAL)  #if !defined(VISUAL)
 #include "unistd.h"  #include "unistd.h"
 #endif  #endif
 #if PARI  #if defined(PARI)
 #include "genpari.h"  #include "genpari.h"
 #endif  #endif
   
Line 323  void Ploadfiles(NODE arg,Q *rp)
Line 323  void Ploadfiles(NODE arg,Q *rp)
   
 void Poutput(NODE arg,Q *rp)  void Poutput(NODE arg,Q *rp)
 {  {
 #if PARI  #if defined(PARI)
         extern FILE *outfile;          extern FILE *outfile;
 #endif  #endif
         FILE *fp;          FILE *fp;
Line 341  void Poutput(NODE arg,Q *rp)
Line 341  void Poutput(NODE arg,Q *rp)
                                 error("output : invalid filename");                                  error("output : invalid filename");
                         break;                          break;
         }          }
 #if PARI  #if defined(PARI)
         pari_outfile =          pari_outfile =
 #endif  #endif
         asir_out = fp;          asir_out = fp;

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>