From b6225dc7cadb63161150283e99b902ea8a89dceb Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 6 Feb 2024 06:03:44 -0500 Subject: Consolidate header includes to omc.h --- include/omc.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/omc.h') diff --git a/include/omc.h b/include/omc.h index 792dd90..36ab676 100644 --- a/include/omc.h +++ b/include/omc.h @@ -7,18 +7,22 @@ #include #include #include +#include #define SYSERROR stderr, "%s:%s:%d: %s\n", path_basename(__FILE__), __FUNCTION__, __LINE__, strerror(errno) #define OMC_BUFSIZ 8192 #define OMC_NAME_MAX 255 #define OMC_DIRSTACK_MAX 1024 +#define HTTP_ERROR(X) X >= 400 #include "config.h" #include "template.h" #include "utils.h" +#include "copy.h" #include "ini.h" #include "conda.h" #include "environment.h" +#include "artifactory.h" #include "deliverable.h" #include "str.h" #include "strlist.h" -- cgit