Minix1.5/lib/other/stderr.c

Compare this file to the similar file:
Show the results in this format:

#include <lib.h>
#include <sys/types.h>
#include <unistd.h>

void std_err(s)
char *s;
{
  register char *p = s;

  while (*p != 0) p++;
  write(2, s, (int) (p - s));
}