diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-04-14 18:42:54 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-04-14 18:42:54 +0200 |
commit | a8f1f2fbd1fe78c185b5c320c11d0265b49f8668 (patch) | |
tree | 869216c945841ed46e2ca4b69af46f54a738d3cd /util/oem_hp.c | |
parent | 42de6cdd540e080b6e34e5e27cb8c44151711010 (diff) | |
parent | c0cffd791bfaffaad631076141fcdfc000adcac1 (diff) |
Merge tag 'upstream/3.0.4'
Upstream version 3.0.4
Diffstat (limited to 'util/oem_hp.c')
-rw-r--r-- | util/oem_hp.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/util/oem_hp.c b/util/oem_hp.c index b7f7d07..081ea6f 100644 --- a/util/oem_hp.c +++ b/util/oem_hp.c @@ -44,6 +44,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "ievents.h" #include "isensor.h" +static char * progver = "3.04"; +static char * progname = "ihpoem"; + static char *redund_str(uchar b) { char *pstr; @@ -153,4 +156,11 @@ void show_oemsdr_hp(uchar *sdr) return; } +#ifdef METACOMMAND +int i_hpoem(int argc, char **argv) +{ + printf("%s ver %s\n", progname,progver); + return(0); +} +#endif /* end oem_hp.c */ |