=================================================================== RCS file: /home/cvs/OpenXM/src/ox_math/mlo.c,v retrieving revision 1.8 retrieving revision 1.10 diff -u -p -r1.8 -r1.10 --- OpenXM/src/ox_math/mlo.c 2000/11/28 20:16:03 1.8 +++ OpenXM/src/ox_math/mlo.c 2003/01/11 12:38:57 1.10 @@ -1,5 +1,5 @@ /* -*- mode: C -*- */ -/* $OpenXM: OpenXM/src/ox_math/mlo.c,v 1.7 2000/10/10 19:58:29 ohara Exp $ */ +/* $OpenXM: OpenXM/src/ox_math/mlo.c,v 1.9 2000/12/03 21:46:52 ohara Exp $ */ /* Copyright (C) Katsuyoshi OHARA, 2000. @@ -16,7 +16,7 @@ #include #include #include "mlo.h" -#include "serv2.h" +#include "sm.h" /* If this flag sets then we identify MLTKSYM to CMO_INDETERMINATE. */ int flag_mlo_symbol = FLAG_MLTKSYM_IS_INDETERMINATE; @@ -30,7 +30,7 @@ mlo *receive_mlo_zz() mlo *m; MLGetString(stdlink, &s); - fprintf(stderr, "--debug: MLO == MLTKINT (%s).\n", s); + fprintf(ox_stderr, "--debug: MLO == MLTKINT (%s).\n", s); m = (mlo *)new_cmo_zz_set_string(s); MLDisownString(stdlink, s); return m; @@ -41,7 +41,7 @@ mlo *receive_mlo_string() char *s; mlo *m; MLGetString(stdlink, &s); - fprintf(stderr, "--debug: MLO == MLTKSTR (\"%s\").\n", s); + fprintf(ox_stderr, "--debug: MLO == MLTKSTR (\"%s\").\n", s); m = (cmo *)new_cmo_string(s); MLDisownString(stdlink, s); return m; @@ -55,13 +55,13 @@ cmo *receive_mlo_function() int i,n; MLGetFunction(stdlink, &s, &n); - fprintf(stderr, "--debug: MLO == MLTKFUNC (%s[#%d]).\n", s, n); + fprintf(ox_stderr, "--debug: MLO == MLTKFUNC (%s[#%d]).\n", s, n); m = new_cmo_list(); list_append((cmo_list *)m, new_cmo_string(s)); for (i=0; i