uemacs/log.c

11 lines
176 B
C

#include "log.h"
static void logdump( const char *buf, ...) {
}
void (*writefmt)( const char *, ...) = logdump ;
void writestr( const char *str) {
writefmt( "%s", str) ;
}