PAPI  5.0.1.0
version.c
Go to the documentation of this file.
00001 /* This utility displays the current PAPI version number */
00002 
00003 #include <stdlib.h>
00004 #include <stdio.h>
00005 #include "papi.h"
00006 
00007 int
00008 main(  )
00009 {
00010     printf( "PAPI Version: %d.%d.%d.%d\n", PAPI_VERSION_MAJOR( PAPI_VERSION ),
00011             PAPI_VERSION_MINOR( PAPI_VERSION ),
00012             PAPI_VERSION_REVISION( PAPI_VERSION ),
00013             PAPI_VERSION_INCREMENT( PAPI_VERSION ) );
00014     exit( 0 );
00015 }
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines