mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-20 20:04:01 -05:00
368c9dc0bd
Signed-off-by: Jouni Malinen <j@w1.fi>
15 lines
335 B
C
15 lines
335 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
#ifndef VERSION_STR_POSTFIX
|
|
#define VERSION_STR_POSTFIX ""
|
|
#endif /* VERSION_STR_POSTFIX */
|
|
|
|
#ifndef GIT_VERSION_STR_POSTFIX
|
|
#define GIT_VERSION_STR_POSTFIX ""
|
|
#endif /* GIT_VERSION_STR_POSTFIX */
|
|
|
|
#define VERSION_STR "2.8-devel" VERSION_STR_POSTFIX GIT_VERSION_STR_POSTFIX
|
|
|
|
#endif /* VERSION_H */
|