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

Diff for /OpenXM_contrib2/asir2000/builtin/ctrl.c between version 1.44 and 1.47

version 1.44, 2014/05/27 09:53:46 version 1.47, 2015/08/06 10:01:51
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/ctrl.c,v 1.43 2014/05/26 09:34:06 ohara Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/ctrl.c,v 1.46 2015/08/04 06:20:44 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
 #include <string.h>  #include <string.h>
 #if defined(VISUAL)  #if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__)
 #include <windows.h>  #include <windows.h>
 #include <winnls.h>  #include <winnls.h>
 #else  #else
Line 84  struct ftab ctrl_tab[] = {
Line 84  struct ftab ctrl_tab[] = {
 };  };
   
 extern int error_in_timer;  extern int error_in_timer;
 extern int prtime,nez,echoback,bigfloat;  extern int prtime,nez,echoback,bigfloat,evalef;
 extern int debug_up;  extern int debug_up;
 extern int GC_max_heap_size,Verbose,hideargs,hex_output,do_server_in_X11;  extern int GC_max_heap_size,Verbose,hideargs,hex_output,do_server_in_X11;
 extern int do_message,do_terse;  extern int do_message,do_terse;
Line 121  static struct {
Line 121  static struct {
         {"cputime",&prtime},          {"cputime",&prtime},
         {"nez",&nez},          {"nez",&nez},
         {"echo",&echoback},          {"echo",&echoback},
 #if defined(PARI)  
         {"bigfloat",&bigfloat},          {"bigfloat",&bigfloat},
 #endif          {"evalef",&evalef},
         {"verbose",&Verbose},          {"verbose",&Verbose},
         {"quiet_mode",&do_quiet},          {"quiet_mode",&do_quiet},
         {"hideargs",&hideargs},          {"hideargs",&hideargs},
Line 293  void Psysinfo(LIST *rp)
Line 292  void Psysinfo(LIST *rp)
     MKLIST(*rp,n);      MKLIST(*rp,n);
 }  }
   
 #if !defined(VISUAL)  #if !defined(VISUAL) && !defined(__MINGW32__) && !defined(__MINGW64__)
   
 static char *get_lang()  static char *get_lang()
 {  {

Legend:
Removed from v.1.44  
changed lines
  Added in v.1.47

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