kilo.c 98 B

123456
  1. #include <unistd.h>
  2. int main() {
  3. char c;
  4. while (read(STDIN_FILENO, &c, 1) == 1);
  5. return 0;
  6. }