cmake-use-pragma-once-both.h 79 B

12345678910
  1. #ifndef BOTH_H
  2. #define BOTH_H
  3. #pragma once
  4. int both()
  5. {
  6. return 0;
  7. }
  8. #endif