blob: 7d8152065843279c9ee376304fed0fc2c2ef85d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#define import_spp
#define import_libc
#define import_stdio
#include <iraf.h>
/* FPUTC -- Put a character to the output file. Offered as a functionally
** equivalent alternative to the macro PUTC.
*/
int
fputc (
char ch,
FILE *fp
)
{
return (putc (ch, fp));
}
|