myshellin/src/myshellin.c

8 lines
112 B
C
Raw Normal View History

2021-06-19 20:05:39 -04:00
#include <stdlib.h>
2021-06-19 19:13:53 -04:00
#include "loop.h"
2021-06-19 17:54:33 -04:00
2021-06-19 19:13:53 -04:00
int main(int argc, char **argv) {
loop();
2021-06-19 20:05:39 -04:00
return EXIT_SUCCESS;
2021-06-19 17:54:33 -04:00
}