Mercurial > hg > Members > koba > t_dandy
view debug.c @ 64:07bc996c8e49
fix t_dandy on ps3.
author | koba <koba@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 11 Feb 2011 18:20:30 +0900 (2011-02-11) |
parents | 435ac1cdb64e |
children |
line wrap: on
line source
#include <stdlib.h> #include <stdio.h> #include <stdarg.h> #include "count2.h" static FILE *dbg_fp; void dbg_init(const char *fname) { dbg_fp = fopen(fname, "w"); } int dbg_printf(const char *format, ...) { va_list ap; va_start(ap, format); vfprintf(dbg_fp, format, ap); va_end(ap); // fflush(dbg_fp); return (0); }