mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-04 19:37:18 -05:00
16 lines
288 B
C
16 lines
288 B
C
/* mlout.c -- implements mlout.h */
|
|
|
|
#include "mlout.h"
|
|
|
|
/* by default just use a stub */
|
|
static void mloutdump( const char *buf, ...) {
|
|
}
|
|
|
|
void (*mloutfmt)( const char *, ...) = mloutdump ;
|
|
|
|
void mloutstr( const char *str) {
|
|
mloutfmt( (*str) ? "%s" : "", str) ;
|
|
}
|
|
|
|
/* end of mlout.c */
|