Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explicitly include ctype.h to fix compilation warning #2314

Merged
merged 2 commits into from Aug 31, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 Big Sur (#2304)
venables marked this conversation as resolved.
Show resolved Hide resolved


## 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