diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-07-01 00:46:29 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-07-01 00:46:29 -0400 |
commit | e34a676b178dbf2b9af37a187704fa0e7c554920 (patch) | |
tree | 0ae2c862493d53fc759395fe98ff3372defeef12 /include/github.h | |
parent | b4199ed70fe89f2f986d4b475604877e3a2e37b5 (diff) | |
download | stasis-e34a676b178dbf2b9af37a187704fa0e7c554920.tar.gz |
Fix circular include
* Github functions do not require access to core.h anyway
Diffstat (limited to 'include/github.h')
-rw-r--r-- | include/github.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/github.h b/include/github.h index 6c8de98..cebeabf 100644 --- a/include/github.h +++ b/include/github.h @@ -1,7 +1,7 @@ #ifndef STASIS_GITHUB_H #define STASIS_GITHUB_H -#include "core.h" +#include <curl/curl.h> #define STASIS_GITHUB_API_VERSION "2022-11-28" |