aboutsummaryrefslogtreecommitdiff
path: root/newasm/slowcat.c
blob: e33f92a5b2c9bf80944c08b3a6e641f318f08878 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <unistd.h>
#include <stdint.h>

int main() {
  uint8_t byte;
  while (read(STDIN_FILENO, &byte, 1)) {
    write(STDOUT_FILENO, &byte, 1);
    usleep(5000);
  }
  return 0;
}