#include void ft_putchar(int c) { write(1, &c, 1); } int main(void) { ft_putchar('a'); return (0); }