=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2018/include/ca.h,v retrieving revision 1.18 retrieving revision 1.21 diff -u -p -r1.18 -r1.21 --- OpenXM_contrib2/asir2018/include/ca.h 2020/02/22 06:23:36 1.18 +++ OpenXM_contrib2/asir2018/include/ca.h 2022/03/30 04:58:53 1.21 @@ -45,7 +45,7 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2018/include/ca.h,v 1.17 2019/12/27 08:13:59 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2018/include/ca.h,v 1.20 2021/01/25 00:39:52 noro Exp $ */ #include #include @@ -704,6 +704,7 @@ struct order_spec { int *module_base_ord; struct order_spec *base; /* for schreyer order */ DMMstack dmmstack; + int (*cmpdl)(int n,DL d1,DL d2); union { int simple; struct { @@ -835,7 +836,7 @@ void (*set_signal(int sig, void (*handler)(int)))(int) #define JMP_BUF jmp_buf #define SETJMP(x) _setjmp(x) #define LONGJMP(x,y) _longjmp(x,y) -#elif defined(__CYGWIN__) || defined(HAVE_SIGACTION) || (defined(__x86_64) && !defined(__MINGW32__)) +#elif !defined(_WIN64) && (defined(__CYGWIN__) || defined(HAVE_SIGACTION) || (defined(__x86_64) && !defined(__MINGW32__))) #define JMP_BUF sigjmp_buf #define SETJMP(x) sigsetjmp(x,~0) #define LONGJMP(x,y) siglongjmp(x,y) @@ -1466,11 +1467,11 @@ int divcheck(VL,P *,int,P,P); int divtdcpz(VL,P,P,P *); int divtpz(VL,P,P,P *); int divum(register int,UM,UM,UM); -int dm(int,int,int *); -int dmb(int,int,int,int *); -int dma(int,int,int,int *); -int dmab(int,int,int,int,int *); -int dmar(int,int,int,int); +unsigned int dm(unsigned int,unsigned int,unsigned int *); +unsigned int dmb(unsigned int,unsigned int,unsigned int,unsigned int *); +unsigned int dma(unsigned int,unsigned int,unsigned int,unsigned int *); +unsigned int dmab(unsigned int,unsigned int,unsigned int,unsigned int,unsigned int *); +unsigned int dmar(unsigned int,unsigned int,unsigned int,unsigned int); int dtestmain(P,Q,ML,int,int *,P *,P *); int geldb(VL,P); int getchomdeg(V,P);