PAPI  5.7.0.0
burn.c
Go to the documentation of this file.
1 #include <stdio.h>
2 
3 #include "do_loops.h"
4 
5 int
6 main( int argc, char **argv )
7 {
8  (void)argc;
9  (void)argv;
10 
11  do_stuff( );
12  return 0;
13 }
int main(int argc, char **argv)
Definition: burn.c:6
void do_stuff(void)
Definition: do_loops.c:256