Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mbedtls
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
external
mbedtls
Commits
636741b1
Commit
636741b1
authored
Jul 01, 2015
by
Manuel Pégourié-Gonnard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove obsolete hacks for uin32_t
We now require support for stdint.h from the compiler.
parent
3083053d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
15 deletions
+0
-15
base64.c
library/base64.c
+0
-5
net.c
library/net.c
+0
-5
ssl_cli.c
library/ssl_cli.c
+0
-5
No files found.
library/base64.c
View file @
636741b1
...
...
@@ -30,12 +30,7 @@
#include "mbedtls/base64.h"
#if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32)
#include <basetsd.h>
typedef
UINT32
uint32_t
;
#else
#include <stdint.h>
#endif
#if defined(MBEDTLS_SELF_TEST)
#include <string.h>
...
...
library/net.c
View file @
636741b1
...
...
@@ -87,12 +87,7 @@ static int wsa_init_done = 0;
#include <time.h>
#if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32)
#include <basetsd.h>
typedef
UINT32
uint32_t
;
#else
#include <stdint.h>
#endif
/*
* Prepare for using the sockets interface
...
...
library/ssl_cli.c
View file @
636741b1
...
...
@@ -42,12 +42,7 @@
#define mbedtls_free free
#endif
#if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32)
#include <basetsd.h>
typedef
UINT32
uint32_t
;
#else
#include <stdint.h>
#endif
#if defined(MBEDTLS_HAVE_TIME)
#include <time.h>
...
...
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