1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

Add missing extern keyword for a couple of numutils functions

In passing, also remove a few surplus empty lines from pg_ltoa and
pg_ulltoa_n in numutils.c

Reported-by: Andrew Gierth
Discussion: https://postgr.es/m/87y2ou3xuh.fsf@news-spur.riddles.org.uk
Backpatch-through: 13, where these changes were introduced
This commit is contained in:
David Rowley
2020-06-13 11:28:12 +12:00
parent 44eff28410
commit 095f2d95c9
2 changed files with 2 additions and 4 deletions

View File

@ -413,7 +413,6 @@ pg_ultoa_n(uint32 value, char *a)
void
pg_ltoa(int32 value, char *a)
{
uint32 uvalue = (uint32) value;
int len;
@ -437,7 +436,6 @@ pg_ulltoa_n(uint64 value, char *a)
i = 0;
uint32 value2;
/* Degenerate case */
if (value == 0)
{