#include <stdarg.h>

#include "msg.h"

void msg(char *fmt, ...)
{
    char buf[128];
    va_list ap;

    vsprintf(buf, fmt, ap);
    write(2, buf, strlen(buf));
}
