blob: 95e14da9b88b65655ba00f93616418e2e06dba30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef CONF_H
#define CONF_H
#include <compat.h>
#include <version.h>
#define PERIODICITY 30 /* How many seconds between
periodic functions. */
#ifndef DATADIR
#define DATADIR "/home/shmit/libdata/nastd"
#endif
#endif
|