mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-14 04:43:20 +00:00
10 lines
157 B
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;
|
|
}
|