Skip to content

Commit

Permalink
add missing include for waitpid
Browse files Browse the repository at this point in the history
  • Loading branch information
YSaxon committed Apr 9, 2024
1 parent 84bc705 commit 82dfb0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include <readline/readline.h>
#include <readline/history.h>
#include <unistd.h> // only used for forking for --repltest repl test harness mode
#include <sys/wait.h> // same as above
#if !defined(__ANDROID__)
#include <wordexp.h> //only used for tokenizing in the repl
#else
Expand All @@ -49,7 +50,7 @@
#endif

const char* NAME = "cliffi";
const char* VERSION = "v1.1.2";
const char* VERSION = "v1.1.3";
const char* BASIC_USAGE_STRING = "<library> <return_typeflag> <function_name> [[-typeflag] <arg>.. [ ... <varargs>..] ]\n";

sigjmp_buf jmpBuffer;
Expand Down

0 comments on commit 82dfb0b

Please sign in to comment.