1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00
profanity/main.c
2012-02-09 22:24:03 +00:00

17 lines
194 B
C

#include "log.h"
#include "windows.h"
#include "profanity.h"
int main(void)
{
log_init();
gui_init();
profanity_start();
gui_close();
log_close();
return 0;
}