blob: 3a6fa255b3d0c3355d864d4eeb3f305984987b40 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef STASIS_SYSTEM_REQUIREMENTS_H
#define STASIS_SYSTEM_REQUIREMENTS_H
#include "delivery.h"
#include "callbacks.h"
#include "envctl.h"
void check_system_env_requirements();
void check_system_requirements(struct Delivery *ctx);
void check_requirements(struct Delivery *ctx);
void check_pathvar(struct Delivery *ctx);
#endif //STASIS_SYSTEM_REQUIREMENTS_H
|