/* * File: mysh.c * Author: Arthur Brandao * * Created on 31 octobre 2018, 12:43 */ #include #include #include #include /* * */ int main(int argc, char* argv[]) { char* a = "azerty\n"; int tmp = write(1, a, strlen(a)); printf("%d\n", tmp); return (EXIT_SUCCESS); }