blob: 4f6bbf062e4b78cdb96236304f53bd1a44900f66 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#include <stdio.h>
/* EPRINTF -- Formatted print to the standard error output.
*/
/* VARARGS */
eprintf (format, argp)
char *format; /* format specification */
int **argp; /* pointer to arg list */
{
_doprnt (format, &argp, stderr);
fflush (stderr);
}
|