PAPI  5.3.0.0
version.c
Go to the documentation of this file.
00001 
00019 /* This utility displays the current PAPI version number */
00020 
00021 #include <stdlib.h>
00022 #include <stdio.h>
00023 #include "papi.h"
00024 
00025 int
00026 main(  )
00027 {
00028     printf( "PAPI Version: %d.%d.%d.%d\n", PAPI_VERSION_MAJOR( PAPI_VERSION ),
00029             PAPI_VERSION_MINOR( PAPI_VERSION ),
00030             PAPI_VERSION_REVISION( PAPI_VERSION ),
00031             PAPI_VERSION_INCREMENT( PAPI_VERSION ) );
00032     exit( 0 );
00033 }
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines