diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-06 06:03:44 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-06 06:03:44 -0500 |
commit | b6225dc7cadb63161150283e99b902ea8a89dceb (patch) | |
tree | bd90b891663d0678bccfa6373bfe8aff3a2e53d2 /include/omc.h | |
parent | 1f7ebb234761d8aa5edf0ea784c2dd9e2e247218 (diff) | |
download | stasis-b6225dc7cadb63161150283e99b902ea8a89dceb.tar.gz |
Consolidate header includes to omc.h
Diffstat (limited to 'include/omc.h')
-rw-r--r-- | include/omc.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 <limits.h> #include <unistd.h> #include <time.h> +#include <sys/statvfs.h> #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" |