
Move the main function to main.c in the git root to allow for alternative main functions to be linked in its place. Specifically this will be used to link the test runner main to run tests.
8 lines
161 B
C
8 lines
161 B
C
#include "src/dunst.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
return dunst_main(argc, argv);
|
|
}
|
|
/* vim: set tabstop=8 shiftwidth=8 expandtab textwidth=0: */
|