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

Annotation of OpenXM_contrib2/asir2000/parse/asir2000_dummy.c, Revision 1.4

1.4     ! fujimoto    1: #if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__)
1.3       ohara       2: #include <stdio.h>
                      3: #include <stdarg.h>
                      4: int w_printf(char *format, ...)
                      5: {
                      6:     int ret;
                      7:     va_list ap;
                      8:     va_start(ap, format);
                      9:     ret = vprintf(format, ap);
                     10:     va_end(ap);
                     11:     return ret;
                     12: }
                     13: int w_fprintf(FILE *fp, char *format, ...)
                     14: {
                     15:     int ret;
                     16:     va_list ap;
                     17:     va_start(ap, format);
                     18:     ret = vfprintf(fp, format, ap);
                     19:     va_end(ap);
                     20:     return ret;
                     21: }
                     22: int w_fflush(FILE *fp)
                     23: {
                     24:     return fflush(fp);
                     25: }
                     26: int w_fgetc(FILE *fp)
                     27: {
                     28:     return fgetc(fp);
                     29: }
                     30: char *w_fgets(char *s, int n, FILE *fp)
                     31: {
                     32:     return fgets(s, n, fp);
                     33: }
                     34: int w_fputc(int c, FILE *fp)
                     35: {
                     36:     return fputc(c, fp);
                     37: }
                     38: int w_fputs(char *s, FILE *fp)
                     39: {
                     40:     return fputs(s, fp);
                     41: }
                     42: int w_ungetc(int c, FILE *fp)
                     43: {
                     44:     return ungetc(c, fp);
                     45: }
1.1       noro       46: void send_progress(short per,char *msg)
                     47: {
                     48: }
1.2       ohara      49: void SendHeapSize()
                     50: {
                     51: }
1.1       noro       52: #endif

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