From f9de1e9a96a8e63bd4d3b9e615abd9cf6d8de703 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 29 Dec 2011 22:55:49 +0200 Subject: PL/Python: Add argument names to function declarations For easier source reading --- src/pl/plpython/plpy_util.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/pl/plpython/plpy_util.h') diff --git a/src/pl/plpython/plpy_util.h b/src/pl/plpython/plpy_util.h index 237d6c5751f..9b9eca0050c 100644 --- a/src/pl/plpython/plpy_util.h +++ b/src/pl/plpython/plpy_util.h @@ -6,10 +6,10 @@ #ifndef PLPY_UTIL_H #define PLPY_UTIL_H -extern void *PLy_malloc(size_t); -extern void *PLy_malloc0(size_t); -extern char *PLy_strdup(const char *); -extern void PLy_free(void *); +extern void *PLy_malloc(size_t bytes); +extern void *PLy_malloc0(size_t bytes); +extern char *PLy_strdup(const char *str); +extern void PLy_free(void *ptr); extern PyObject *PLyUnicode_Bytes(PyObject *unicode); extern char *PLyUnicode_AsString(PyObject *unicode); -- cgit v1.2.3