Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
persistent
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
persistent
Commits
19661a9e
Commit
19661a9e
authored
Apr 25, 2019
by
Marius Gedminas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Why does Microsoft even exist?
parent
bae1560d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
persistent/cPersistence.c
persistent/cPersistence.c
+6
-2
No files found.
persistent/cPersistence.c
View file @
19661a9e
...
...
@@ -28,12 +28,16 @@ struct ccobject_head_struct
/*
The compiler on Windows used for Python 2.7 doesn't include
stdint.h.
The compiler on Windows used for Python 3.5 doesn't define
PRIx64 in its copy of stdint.h.
*/
#if !defined(PY3K) && defined(_WIN32)
typedef
unsigned
long
long
uint64_t
;
#define PRIx64 "llx"
#else
#include <stdint.h>
# include <stdint.h>
#endif
#ifndef PRIx64 && defined(_WIN32)
# define PRIx64 "llx"
#endif
/* These two objects are initialized when the module is loaded */
...
...
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