summaryrefslogtreecommitdiff
path: root/show_bzversion.c
blob: cb073f92b99f7db4013f0acfb07b306dc11532a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

#include <bzlib.h>

/****************************************************
 * This is a simple program to
 * 1. test the bzip2 installation
 *    - if it compiles and links, we're in
 * 2. run this to get the bzip2 version string
 ****************************************************/

int main(void) {
  printf("%s\n", BZ2_bzlibVersion());
}