blob: 2154851c3e8e7aed4b2d86743f58d5e0c9a5b81b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#define import_libc
#define import_xnames
#include <iraf.h>
/* C_XONERR -- Call any error handler procedures posted with ONERROR.
*/
void
c_xonerr (
int errcode
)
{
XINT x_errcode = errcode;
XONERR (&x_errcode);
}
|