mirror of
https://github.com/postgres/postgres.git
synced 2025-12-21 05:21:08 +03:00
Add missing 'extern' to function prototypes.
Postgres style is to spell out extern. Noticed while scripting adding PGDLLIMPORT markers to functions. Discussion: https://postgr.es/m/20220512164513.vaheofqp2q24l65r@alap3.anarazel.de
This commit is contained in:
@@ -68,7 +68,7 @@ typedef struct NumericData *Numeric;
|
||||
*/
|
||||
extern bool numeric_is_nan(Numeric num);
|
||||
extern bool numeric_is_inf(Numeric num);
|
||||
int32 numeric_maximum_size(int32 typmod);
|
||||
extern int32 numeric_maximum_size(int32 typmod);
|
||||
extern char *numeric_out_sci(Numeric num, int scale);
|
||||
extern char *numeric_normalize(Numeric num);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user