diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-26 13:09:14 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-26 13:27:42 -0400 |
commit | a292680b28f607a3b5401ea4ab5641b817e12c20 (patch) | |
tree | 9854a2dc81f050751e184c90694aa954cac53f91 /src | |
parent | ed32eb8b1f74936d7670437e60f905412a2b802c (diff) | |
download | stasis-a292680b28f607a3b5401ea4ab5641b817e12c20.tar.gz |
Include github.h and template_func_proto.h in core.h
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/github.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4e76eb6..a7b06f7 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -23,6 +23,7 @@ add_library(stasis_core STATIC docker.c junitxml.c github.c + template_func_proto.c ) add_executable(stasis diff --git a/src/github.c b/src/github.c index d75e84c..4491714 100644 --- a/src/github.c +++ b/src/github.c @@ -1,7 +1,6 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <curl/curl.h> #include "github.h" struct GHContent { |