fish/main.c

10 lines
157 B
C
Raw Normal View History

2017-05-11 15:16:06 +00:00
#include <stdlib.h>
#include "fish_shell/fish_core.h"
2017-05-09 14:04:24 +00:00
int main() {
2017-05-11 15:16:06 +00:00
/* todo load config file */
fishLoop(getSettings());
2017-05-11 15:16:06 +00:00
return EXIT_SUCCESS;
}