Skip to content

Commit

Permalink
Fix PR ocaml#504.
Browse files Browse the repository at this point in the history
byterun/afl.c should include signal.h so that the kill function is
declared.
  • Loading branch information
shindere committed Dec 6, 2016
1 parent 040fc9f commit eeb9eac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions byterun/afl.c
Expand Up @@ -13,6 +13,7 @@ CAMLprim value caml_setup_afl (value unit)

#include <unistd.h>
#include <sys/types.h>
#include <signal.h>
#include <sys/shm.h>
#include <sys/wait.h>
#include <stdio.h>
Expand Down

0 comments on commit eeb9eac

Please sign in to comment.