more mozilla mompatibility
[glugin.git] / common.cpp
blob8a339aa5f35c05b7d9605d94fb29f59dc376aa7e
2 #include <stdio.h>
3 #include <stdarg.h>
5 void Log(const char* c,...)
7 va_list al;
8 FILE*f=fopen(".glugin.log","a");
9 if(!f)return;
10 va_start(al,c);
11 vfprintf(f,c,al);
12 va_end(al);
13 fputc('\n',f);
14 fclose(f);