[BACK]Return to oxprint.h CVS log [TXT][DIR] Up to [local] / OpenXM / src / hgm / oxprint

Diff for /OpenXM/src/hgm/oxprint/oxprint.h between version 1.4 and 1.5

version 1.4, 2016/02/13 02:23:39 version 1.5, 2017/04/01 12:01:25
Line 1 
Line 1 
 #define oxprintf(...)  printf(__VA_ARGS__)  #include <R.h>
 #define oxprintfe(...) fprintf(stderr,__VA_ARGS__)  #include <R_ext/Utils.h>
 #define oxflush()  fflush(NULL)  #include <R_ext/Print.h>
 #define oxabort()  abort()  #include <Rinternals.h>
 #define oxstdout  stdout  #include <R_ext/Rdynload.h>
 #define oxstdin   stdin  #define oxprintf(...)  Rprintf(__VA_ARGS__)
 #define oxexit(a) exit(a)  #define oxprintfe(...) REprintf(__VA_ARGS__)
 #define oxexit0(a) exit(a)  #define oxflush()
   #define oxabort()  error("Fatal error in the shared lib hgm.\n")
   #define oxstdout  NULL
   #define oxstdin  NULL
   #define oxexit(a)  error("Fatal error in the shared lib hgm.\n");
   #define oxexit0(a)  error("Fatal error in the shared lib hgm.\n");

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

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