Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
1f8c6b51
Commit
1f8c6b51
authored
20 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
Do the Borland/MSVC long long shuffle.
parent
242786d3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/doors/dgnlance/dgnlnce.c
+16
-8
16 additions, 8 deletions
src/doors/dgnlance/dgnlnce.c
with
16 additions
and
8 deletions
src/doors/dgnlance/dgnlnce.c
+
16
−
8
View file @
1f8c6b51
...
...
@@ -12,33 +12,41 @@
#ifndef INT64
#ifdef _MSC_VER
#define INT64 _int64
#define INT64
_
_int64
#else
#define INT64 long long int
#endif
#endif
#ifndef INT64FORMAT
#ifdef __
unix
__
#define INT64FORMAT "
ll
d"
#ifdef __
BORLANDC
__
#define INT64FORMAT "
L
d"
#else
#define INT64FORMAT "I64d"
#ifdef _MSC_VER
#define INT64FORMAT "I64d"
#else
#define INT64FORMAT "lld"
#endif
#endif
#endif
#ifndef QWORD
#ifdef _MSC_VER
#define QWORD unsigned _int64
#e
lse
#e
#define QWORD unsigned long long int
#endif
#endif
#ifndef QWORDFORMAT
#ifdef __
unix
__
#define QWORDFORMAT "
ll
u"
#ifdef __
BORLANDC
__
#define QWORDFORMAT "
L
u"
#else
#define QWORDFORMAT "I64u"
#ifdef _MSC_VER
#define QWORDFORMAT "I64u"
#else
#define QWORDFORMAT "llu"
#endif
#endif
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment