diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-10-26 19:53:29 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-10-26 19:53:29 -0400 |
commit | 17178535cc9df5e834dfd43e3b2b919e02e5798d (patch) | |
tree | 5e55e8b2c2453ccf6271b190cf45e90d2c25179d /include/ohmycal.h | |
download | stasis-17178535cc9df5e834dfd43e3b2b919e02e5798d.tar.gz |
Initial commit
Diffstat (limited to 'include/ohmycal.h')
-rw-r--r-- | include/ohmycal.h | 24 |
1 files changed, 24 insertions, 0 deletions
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 <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <limits.h> +#include <unistd.h> + +#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 |