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 parentffe0097 commit46db8acCopy full SHA for 46db8ac
src/backend/utils/adt/numutils.c
@@ -10,7 +10,7 @@
10
*
11
12
* IDENTIFICATION
13
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.31 1999/07/08 00:27:01 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.32 1999/07/09 03:27:20 momjian Exp $
14
15
*-------------------------------------------------------------------------
16
*/
@@ -76,7 +76,7 @@ pg_atoi(char *s, int size, int c)
76
switch (size)
77
{
78
casesizeof(int32):
79
-#if defined(HAVE_LONG_INT_64)|| defined(HAVE_LONG_LONG_INT_64)
+#ifdefHAS_LONG_LONG
80
/* won't get ERANGE on these with 64-bit longs... */
81
if (l<INT_MIN)
82
@@ -88,7 +88,7 @@ pg_atoi(char *s, int size, int c)
88
errno=ERANGE;
89
elog(ERROR,"pg_atoi: error reading \"%s\": %m",s);
90
}
91
-#endif/*HAVE_LONG_INT_64 or HAVE_LONG_LONG_INT_64 */
+#endif/*HAS_LONG_LONG */
92
break;
93
casesizeof(int16):
94
if (l<SHRT_MIN)