Skip to content

Commit

Permalink
Merge pull request #2314 from venables/fix-include
Browse files Browse the repository at this point in the history
Explicitly include ctype.h to fix compilation warning
  • Loading branch information
nateberkopec committed Aug 31, 2020
2 parents a24b51b + e62f816 commit 8d1ccc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions History.md
@@ -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
Expand Down
1 change: 1 addition & 0 deletions ext/puma_http11/puma_http11.c
Expand Up @@ -10,6 +10,7 @@
#include "ext_help.h"
#include <assert.h>
#include <string.h>
#include <ctype.h>
#include "http11_parser.h"

#ifndef MANAGED_STRINGS
Expand Down

0 comments on commit 8d1ccc6

Please sign in to comment.