From 17178535cc9df5e834dfd43e3b2b919e02e5798d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 26 Oct 2023 19:53:29 -0400 Subject: Initial commit --- include/ohmycal.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 include/ohmycal.h (limited to 'include/ohmycal.h') diff --git a/include/ohmycal.h b/include/ohmycal.h new file mode 100644 index 0000000..d3e86ec --- /dev/null +++ b/include/ohmycal.h @@ -0,0 +1,24 @@ +#ifndef OHMYCAL_OHMYCAL_H +#define OHMYCAL_OHMYCAL_H +#include +#include +#include +#include +#include + +#define SYSERROR stderr, "%s:%s:%d: %s\n", path_basename(__FILE__), __FUNCTION__, __LINE__, strerror(errno) +#define OHMYCAL_BUFSIZ 8192 + +#include "utils.h" +#include "ini.h" +#include "conda.h" +#include "environment.h" +#include "deliverable.h" +#include "str.h" +#include "strlist.h" +#include "system.h" +#include "download.h" +#include "recipe.h" +#include "relocation.h" + +#endif //OHMYCAL_OHMYCAL_H -- cgit