Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asn1c
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
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
qwebaby3
asn1c
Commits
7943c301
Commit
7943c301
authored
17 years ago
by
Lev Walkin
Browse files
Options
Downloads
Patches
Plain Diff
stdint only if not specifying types directly
parent
0b1eb0e7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
skeletons/asn_system.h
+2
-1
2 additions, 1 deletion
skeletons/asn_system.h
with
2 additions
and
1 deletion
skeletons/asn_system.h
+
2
−
1
View file @
7943c301
...
@@ -24,7 +24,6 @@
...
@@ -24,7 +24,6 @@
#ifdef WIN32
#ifdef WIN32
#include
<malloc.h>
#include
<malloc.h>
#include
<stdint.h>
#define snprintf _snprintf
#define snprintf _snprintf
#define vsnprintf _vsnprintf
#define vsnprintf _vsnprintf
...
@@ -52,6 +51,8 @@ typedef unsigned int uint32_t;
...
@@ -52,6 +51,8 @@ typedef unsigned int uint32_t;
#define finite _finite
#define finite _finite
#define copysign _copysign
#define copysign _copysign
#define ilogb _logb
#define ilogb _logb
#else
/* !_MSC_VER */
#include
<stdint.h>
#endif
/* _MSC_VER */
#endif
/* _MSC_VER */
#else
/* !WIN32 */
#else
/* !WIN32 */
...
...
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