URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [gdb-5.0/] [readline/] [examples/] [rlversion.c] - Rev 1772
Go to most recent revision | Compare with Previous | Blame | View Log
/* * 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); }
Go to most recent revision | Compare with Previous | Blame | View Log