Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7eb67fc

Browse files
committed
Cope with platforms that offer LONGLONG_MIN in place of the C99-spec
LLONG_MIN. One example is AIX, per report from Andreas.
1 parentc9f8c2f commit7eb67fc

File tree

1 file changed

+5
-1
lines changed
  • src/interfaces/ecpg/ecpglib

1 file changed

+5
-1
lines changed

‎src/interfaces/ecpg/ecpglib/misc.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/misc.c,v 1.15 2003/09/09 10:46:37 meskes Exp $ */
1+
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/misc.c,v 1.16 2003/10/21 15:34:34 tgl Exp $ */
22

33
#definePOSTGRES_ECPG_INTERNAL
44
#include"postgres_fe.h"
@@ -20,7 +20,11 @@
2020

2121
#ifdefHAVE_LONG_LONG_INT_64
2222
#ifndefLONG_LONG_MIN
23+
#ifdefLLONG_MIN
2324
#defineLONG_LONG_MIN LLONG_MIN
25+
#else
26+
#defineLONG_LONG_MIN LONGLONG_MIN
27+
#endif
2428
#endif
2529
#endif
2630

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp