diff options
Diffstat (limited to 'exam02/rendu/aff_a')
| -rwxr-xr-x | exam02/rendu/aff_a/aff_a.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/exam02/rendu/aff_a/aff_a.c b/exam02/rendu/aff_a/aff_a.c new file mode 100755 index 0000000..ab4867c --- /dev/null +++ b/exam02/rendu/aff_a/aff_a.c @@ -0,0 +1,21 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* aff_a.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: exam <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/07/19 17:01:33 by exam #+# #+# */ +/* Updated: 2019/07/19 17:03:04 by exam ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include <unistd.h> + +int main(int argc, char **argv) +{ + (void)argc; + (void)argv; + write(1, "a\n", 2); + return (0); +} |
