blob: 0ad08b3451686e68485e37fc362556d12bed7182 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef CONFIG_H
#define CONFIG_H 1
#define LOG(text) fprintf(stderr, "%s\n", text);
#define CMD(cmd) LOG(cmd); cmd;
#define TESTSEM "/testsem"
#define CNTSEM "/testcnt"
#endif
|