Skip to content
Snippets Groups Projects
Commit 74bbf703 authored by Nick Kralevich's avatar Nick Kralevich
Browse files

maybe fix mac build.

  1 warning generated.
  external/sepolicy/tools/sepolicy-analyze.c:446:27: error: implicit declaration of function 'isspace' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
          while (p < end && isspace(*p))
                          ^
  1 error generated.
  make: *** [out/host/darwin-x86/obj32/EXECUTABLES/sepolicy-analyze_intermediates/sepolicy-analyze.o] Error 1
  make: *** Waiting for unfinished jobs....

Change-Id: I250dcef7c726d5b66835dc51c057e472b801aa2c
parent ddd47b0b
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include <sepol/policydb/expand.h> #include <sepol/policydb/expand.h>
#include <sepol/policydb/util.h> #include <sepol/policydb/util.h>
#include <stdbool.h> #include <stdbool.h>
#include <ctype.h>
static int debug; static int debug;
static int warn; static int warn;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment