freebsd-dev/contrib/libreadline/examples/rlversion.c
Andrey A. Chernov f5b6c9d1ed readline v4.0
1999-05-28 01:59:23 +00:00

22 lines
326 B
C

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