aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/build/perftools.c
blob: 03548b4c7ef198cc5a5b1eaa597360805c33a501 (plain)
1
2
3
4
5
6
7
#include <gperftools/profiler.h>

int main() {
  ProfilerStart("/dev/null");
  ProfilerStop();
  return 0;
}