diff options
Diffstat (limited to 'src/pl/plpython/plpy_elog.h')
-rw-r--r-- | src/pl/plpython/plpy_elog.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/src/pl/plpython/plpy_elog.h b/src/pl/plpython/plpy_elog.h index e4e4dfb695d..94725c2a2e4 100644 --- a/src/pl/plpython/plpy_elog.h +++ b/src/pl/plpython/plpy_elog.h @@ -10,18 +10,11 @@ extern PyObject *PLy_exc_error; extern PyObject *PLy_exc_fatal; extern PyObject *PLy_exc_spi_error; -extern void -PLy_elog(int elevel, const char *fmt,...) -pg_attribute_printf(2, 3); +extern void PLy_elog(int elevel, const char *fmt,...) pg_attribute_printf(2, 3); -extern void -PLy_exception_set(PyObject *exc, const char *fmt,...) -pg_attribute_printf(2, 3); +extern void PLy_exception_set(PyObject *exc, const char *fmt,...) pg_attribute_printf(2, 3); -extern void -PLy_exception_set_plural(PyObject *exc, const char *fmt_singular, const char *fmt_plural, - unsigned long n,...) -pg_attribute_printf(2, 5) -pg_attribute_printf(3, 5); +extern void PLy_exception_set_plural(PyObject *exc, const char *fmt_singular, const char *fmt_plural, + unsigned long n,...) pg_attribute_printf(2, 5) pg_attribute_printf(3, 5); #endif /* PLPY_ELOG_H */ |