[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.5 and 1.6

version 1.5, 2017/04/01 12:01:25 version 1.6, 2017/04/01 21:50:28
Line 1 
Line 1 
 #include <R.h>  #define oxprintf(...)  printf(__VA_ARGS__)
 #include <R_ext/Utils.h>  #define oxprintfe(...) fprintf(stderr,__VA_ARGS__)
 #include <R_ext/Print.h>  #define oxflush()  fflush(NULL)
 #include <Rinternals.h>  #define oxabort()  abort()
 #include <R_ext/Rdynload.h>  #define oxstdout  stdout
 #define oxprintf(...)  Rprintf(__VA_ARGS__)  #define oxstdin   stdin
 #define oxprintfe(...) REprintf(__VA_ARGS__)  #define oxexit(a) exit(a)
 #define oxflush()  #define oxexit0(a) exit(a)
 #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.5  
changed lines
  Added in v.1.6

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