Home | History | Annotate | Download | only in libutil
      1 /**
      2  * @file op_version.h
      3  * output version string
      4  *
      5  * @remark Copyright 2003 OProfile authors
      6  * @remark Read the file COPYING
      7  *
      8  * @author John Levon
      9  * @author Philippe Elie
     10  */
     11 
     12 #ifndef OP_VERSION_H
     13 #define OP_VERSION_H
     14 
     15 #ifdef __cplusplus
     16 extern "C" {
     17 #endif
     18 
     19 /** output the version string */
     20 void show_version(char const * app_name);
     21 
     22 #ifdef __cplusplus
     23 }
     24 #endif
     25 
     26 #endif /* !OP_VERSION_H */
     27