Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-http by
Revision 20:fdd457d063a8, committed 2017-10-09
- Comitter:
- wiggly
- Date:
- Mon Oct 09 14:51:53 2017 +0100
- Parent:
- 19:a5371b71de6f
- Commit message:
- Include standard header to get size_t instead of redefining it.
Changed in this revision
http_parser/http_parser.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/http_parser/http_parser.h Mon Sep 04 16:52:46 2017 +0100 +++ b/http_parser/http_parser.h Mon Oct 09 14:51:53 2017 +0100 @@ -29,7 +29,7 @@ #define HTTP_PARSER_VERSION_MINOR 7 #define HTTP_PARSER_VERSION_PATCH 1 -typedef unsigned int size_t; +#include <stddef.h> #if defined(_WIN32) && !defined(__MINGW32__) && \ (!defined(_MSC_VER) || _MSC_VER<1600) && !defined(__WINE__) @@ -430,4 +430,4 @@ #ifdef __cplusplus } #endif -#endif \ No newline at end of file +#endif