mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
6 lines
139 B
C
6 lines
139 B
C
|
#include <stdio.h>
|
||
|
#include "hdf5.h"
|
||
|
int main() {
|
||
|
printf("%d.%d.%d\\n", H5_VERS_MAJOR, H5_VERS_MINOR, H5_VERS_RELEASE);
|
||
|
return 0;
|
||
|
}
|