Skip to content

Commit

Permalink
Explicitly include ctype.h to fix compilation warning
Browse files Browse the repository at this point in the history
[changelog skip]

Had the following warning during compilation without the include:
warning: implicitly declaring library function 'isspace' with type 'int (int)'
  • Loading branch information
AnthonyClark committed Nov 12, 2019
1 parent 1e67820 commit 897e064
Showing 1 changed file with 1 addition and 0 deletions.
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 897e064

Please sign in to comment.