mirror of https://gitee.com/openkylin/sysstat.git
17 lines
309 B
Plaintext
17 lines
309 B
Plaintext
/*
|
|
* sysstat: System performance tools for Linux
|
|
* (C) 1999-2022 by Sebastien Godard (sysstat <at> orange.fr)
|
|
*/
|
|
|
|
#ifndef _VERSION_H
|
|
#define _VERSION_H
|
|
|
|
#ifndef TEST
|
|
/* sysstat version number */
|
|
#define VERSION "@PACKAGE_VERSION@"
|
|
#else
|
|
#define VERSION "99.9.9"
|
|
#endif /* TEST */
|
|
|
|
#endif /* _VERSION_H */
|