Merge pull request #2314 from venables/fix-include

Explicitly include ctype.h to fix compilation warning
This commit is contained in:
Nate Berkopec 2020-08-31 15:18:50 -05:00 committed by GitHub
commit 8d1ccc60b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -1,10 +1,7 @@
## Master
* Features
* Your feature goes here (#Github Number)
* Bugfixes
* Your bugfix goes here (#Github Number)
* Explicitly include ctype.h to fix compilation warning and build error on macOS with Xcode 12 (#2304)
## 4.3.3 and 3.12.4 / 2020-02-28

View File

@ -10,6 +10,7 @@
#include "ext_help.h"
#include <assert.h>
#include <string.h>
#include <ctype.h>
#include "http11_parser.h"
#ifndef MANAGED_STRINGS