blob: 080863c4458920d10866758771c1759970be8ebe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef STASIS_ARGS_H
#define STASIS_ARGS_H
#include <getopt.h>
#define OPT_MICROMAMBA_DOWNLOAD_URL 1000
extern struct option long_options[];
void usage(char *name);
#endif //STASIS_ARGS_H
|