Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
6d62e1da
Commit
6d62e1da
authored
Sep 05, 1998
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use alternate form for long-long-int to be compatible with AIX.
%Ld worked with gcc, but %lld works with both gcc and AIX.
parent
4b814b18
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/include/utils/int8.h
src/include/utils/int8.h
+2
-2
No files found.
src/include/utils/int8.h
View file @
6d62e1da
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: int8.h,v 1.
3 1998/09/01 04:39:13 momjian
Exp $
* $Id: int8.h,v 1.
4 1998/09/05 01:19:38 thomas
Exp $
*
*
* NOTES
* NOTES
* These data types are supported on all 64-bit architectures, and may
* These data types are supported on all 64-bit architectures, and may
...
@@ -33,7 +33,7 @@ typedef long int int64;
...
@@ -33,7 +33,7 @@ typedef long int int64;
/* We have working support for "long long int", use that */
/* We have working support for "long long int", use that */
typedef
long
long
int
int64
;
typedef
long
long
int
int64
;
#define INT64_FORMAT "%
L
d"
#define INT64_FORMAT "%
ll
d"
#else
#else
/* Won't actually work, but fall back to long int so that int8.c compiles */
/* Won't actually work, but fall back to long int so that int8.c compiles */
typedef
long
int
int64
;
typedef
long
int
int64
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment