blob: 652d37ccb88446daed24c1e6f74699a11957a2e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* rlversion -- print out readline's version number
*/
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include <stdio.h>
#include <sys/types.h>
#include "posixstat.h"
#ifdef READLINE_LIBRARY
# include "readline.h"
#else
# include <readline/readline.h>
#endif
main()
{
printf ("%s\n", rl_library_version ? rl_library_version : "unknown");
exit (0);
}
|