diff options
author | Rafael Sadowski <rafael@sizeofvoid.org> | 2016-10-03 19:06:58 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2018-08-13 17:19:51 +0200 |
commit | bcaf55e5b8525ea91346657520ff47f45cbbe064 (patch) | |
tree | 5895e723ab61da5a7ea83d0f294b31d9c5f72fd2 | |
parent | 8fd77ea19bd7441a110b7d0da5fed10ba9be0a2c (diff) | |
download | profani-tty-bcaf55e5b8525ea91346657520ff47f45cbbe064.tar.gz |
fix: Missing pthread include
-rw-r--r-- | tests/unittests/tools/stub_http_upload.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unittests/tools/stub_http_upload.c b/tests/unittests/tools/stub_http_upload.c index 508d3f8b..59a7bace 100644 --- a/tests/unittests/tools/stub_http_upload.c +++ b/tests/unittests/tools/stub_http_upload.c @@ -2,6 +2,7 @@ #define TOOLS_HTTP_UPLOAD_H #include <curl/curl.h> +#include <pthread.h> // forward -> ui/win_types.h typedef struct prof_win_t ProfWin; |