mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
Re-run pgindent, fixing a problem where comment lines after a blank
comment line where output as too long, and update typedefs for /lib directory. Also fix case where identifiers were used as variable names in the backend, but as typedefs in ecpg (favor the backend for indenting). Backpatch to 8.1.X.
This commit is contained in:
@ -15,7 +15,7 @@
|
||||
char *ECPGalloc(long, int);
|
||||
|
||||
static int
|
||||
deccall2(decimal * arg1, decimal * arg2, int (*ptr) (numeric *, numeric *))
|
||||
deccall2(decimal *arg1, decimal *arg2, int (*ptr) (numeric *, numeric *))
|
||||
{
|
||||
numeric *a1,
|
||||
*a2;
|
||||
@ -53,7 +53,7 @@ deccall2(decimal * arg1, decimal * arg2, int (*ptr) (numeric *, numeric *))
|
||||
}
|
||||
|
||||
static int
|
||||
deccall3(decimal * arg1, decimal * arg2, decimal * result, int (*ptr) (numeric *, numeric *, numeric *))
|
||||
deccall3(decimal *arg1, decimal *arg2, decimal *result, int (*ptr) (numeric *, numeric *, numeric *))
|
||||
{
|
||||
numeric *a1,
|
||||
*a2,
|
||||
@ -118,7 +118,7 @@ deccall3(decimal * arg1, decimal * arg2, decimal * result, int (*ptr) (numeric *
|
||||
|
||||
/* we start with the numeric functions */
|
||||
int
|
||||
decadd(decimal * arg1, decimal * arg2, decimal * sum)
|
||||
decadd(decimal *arg1, decimal *arg2, decimal *sum)
|
||||
{
|
||||
deccall3(arg1, arg2, sum, PGTYPESnumeric_add);
|
||||
|
||||
@ -131,13 +131,13 @@ decadd(decimal * arg1, decimal * arg2, decimal * sum)
|
||||
}
|
||||
|
||||
int
|
||||
deccmp(decimal * arg1, decimal * arg2)
|
||||
deccmp(decimal *arg1, decimal *arg2)
|
||||
{
|
||||
return (deccall2(arg1, arg2, PGTYPESnumeric_cmp));
|
||||
}
|
||||
|
||||
void
|
||||
deccopy(decimal * src, decimal * target)
|
||||
deccopy(decimal *src, decimal *target)
|
||||
{
|
||||
memcpy(target, src, sizeof(decimal));
|
||||
}
|
||||
@ -162,7 +162,7 @@ ecpg_strndup(const char *str, size_t len)
|
||||
}
|
||||
|
||||
int
|
||||
deccvasc(char *cp, int len, decimal * np)
|
||||
deccvasc(char *cp, int len, decimal *np)
|
||||
{
|
||||
char *str = ecpg_strndup(cp, len); /* decimal_in always converts
|
||||
* the complete string */
|
||||
@ -207,7 +207,7 @@ deccvasc(char *cp, int len, decimal * np)
|
||||
}
|
||||
|
||||
int
|
||||
deccvdbl(double dbl, decimal * np)
|
||||
deccvdbl(double dbl, decimal *np)
|
||||
{
|
||||
numeric *nres = PGTYPESnumeric_new();
|
||||
int result = 1;
|
||||
@ -228,7 +228,7 @@ deccvdbl(double dbl, decimal * np)
|
||||
}
|
||||
|
||||
int
|
||||
deccvint(int in, decimal * np)
|
||||
deccvint(int in, decimal *np)
|
||||
{
|
||||
numeric *nres = PGTYPESnumeric_new();
|
||||
int result = 1;
|
||||
@ -249,7 +249,7 @@ deccvint(int in, decimal * np)
|
||||
}
|
||||
|
||||
int
|
||||
deccvlong(long lng, decimal * np)
|
||||
deccvlong(long lng, decimal *np)
|
||||
{
|
||||
numeric *nres = PGTYPESnumeric_new();
|
||||
int result = 1;
|
||||
@ -270,7 +270,7 @@ deccvlong(long lng, decimal * np)
|
||||
}
|
||||
|
||||
int
|
||||
decdiv(decimal * n1, decimal * n2, decimal * result)
|
||||
decdiv(decimal *n1, decimal *n2, decimal *result)
|
||||
{
|
||||
|
||||
int i;
|
||||
@ -295,7 +295,7 @@ decdiv(decimal * n1, decimal * n2, decimal * result)
|
||||
}
|
||||
|
||||
int
|
||||
decmul(decimal * n1, decimal * n2, decimal * result)
|
||||
decmul(decimal *n1, decimal *n2, decimal *result)
|
||||
{
|
||||
int i;
|
||||
|
||||
@ -316,7 +316,7 @@ decmul(decimal * n1, decimal * n2, decimal * result)
|
||||
}
|
||||
|
||||
int
|
||||
decsub(decimal * n1, decimal * n2, decimal * result)
|
||||
decsub(decimal *n1, decimal *n2, decimal *result)
|
||||
{
|
||||
int i;
|
||||
|
||||
@ -337,7 +337,7 @@ decsub(decimal * n1, decimal * n2, decimal * result)
|
||||
}
|
||||
|
||||
int
|
||||
dectoasc(decimal * np, char *cp, int len, int right)
|
||||
dectoasc(decimal *np, char *cp, int len, int right)
|
||||
{
|
||||
char *str;
|
||||
numeric *nres = PGTYPESnumeric_new();
|
||||
@ -372,7 +372,7 @@ dectoasc(decimal * np, char *cp, int len, int right)
|
||||
}
|
||||
|
||||
int
|
||||
dectodbl(decimal * np, double *dblp)
|
||||
dectodbl(decimal *np, double *dblp)
|
||||
{
|
||||
numeric *nres = PGTYPESnumeric_new();
|
||||
int i;
|
||||
@ -390,7 +390,7 @@ dectodbl(decimal * np, double *dblp)
|
||||
}
|
||||
|
||||
int
|
||||
dectoint(decimal * np, int *ip)
|
||||
dectoint(decimal *np, int *ip)
|
||||
{
|
||||
int ret;
|
||||
numeric *nres = PGTYPESnumeric_new();
|
||||
@ -410,7 +410,7 @@ dectoint(decimal * np, int *ip)
|
||||
}
|
||||
|
||||
int
|
||||
dectolong(decimal * np, long *lngp)
|
||||
dectolong(decimal *np, long *lngp)
|
||||
{
|
||||
int ret;
|
||||
numeric *nres = PGTYPESnumeric_new();;
|
||||
|
Reference in New Issue
Block a user