fish/main.c

10 lines
157 B
C

#include <stdlib.h>
#include "fish_shell/fish_core.h"
int main() {
/* todo load config file */
fishLoop(getSettings());
return EXIT_SUCCESS;
}