/* * rlversion -- print out readline's version number */ #if defined (HAVE_CONFIG_H) # include #endif #include #include #include "posixstat.h" #ifdef READLINE_LIBRARY # include "readline.h" #else # include #endif main() { printf ("%s\n", rl_library_version ? rl_library_version : "unknown"); exit (0); }