blob: ddc2705851b2d54e165b7475c0c8c0197ee3c430 (
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_path();
void check_system_env_requirements();
void check_system_requirements(struct Delivery *ctx);
void check_requirements(struct Delivery *ctx);
#endif //STASIS_SYSTEM_REQUIREMENTS_H
|