stderr.c 91 B

12345678
  1. std_err(s)
  2. char *s;
  3. {
  4. char *p = s;
  5. while(*p != 0) p++;
  6. write(2, s, (int)(p - s));
  7. }