1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-11-23 11:41:15 -05:00

Make line independant of display by introducing instanciable logwrite.

This commit is contained in:
2013-06-14 17:35:35 +08:00
parent 4f9598b5da
commit 03bd7dd902
5 changed files with 23 additions and 12 deletions

6
log.c Normal file
View File

@@ -0,0 +1,6 @@
#include "log.h"
void logdump( const char *buf, ...) {
}
void (*logwrite)( const char *, ...) = logdump ;