We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent4c87f79 commit439ef85Copy full SHA for 439ef85
src/backend/port/snprintf.c
@@ -75,7 +75,7 @@ typedef long long long_long;
75
* causing nast effects.
76
**************************************************************/
77
78
-/*static char _id[] = "$Id: snprintf.c,v 1.10 1998/10/08 00:34:47 momjian Exp $";*/
+/*static char _id[] = "$Id: snprintf.c,v 1.11 1998/12/12 21:30:57 momjian Exp $";*/
79
staticchar*end;
80
staticintSnprfOverflow;
81
@@ -121,7 +121,13 @@ vsnprintf(char *str, size_t count, const char *fmt,...)
121
*/
122
123
staticvoidfmtstr__P((char*value,intljust,intlen,intzpad,intmaxwidth));
124
+
125
+#ifndefHAVE_LONG_INT_64
126
staticvoidfmtnum__P((longvalue,intbase,intdosign,intljust,intlen,intzpad));
127
+#else
128
+staticvoidfmtnum__P((long_longvalue,intbase,intdosign,intljust,intlen,intzpad));
129
+#endif
130
131
staticvoiddostr__P((char*,int));
132
staticchar*output;
133
staticvoiddopr_outch__P((intc));