interposed.h 290 B

12345678910111213141516
  1. /*
  2. * Copyright 2022 Yury Gribov
  3. *
  4. * The MIT License (MIT)
  5. *
  6. * Use of this source code is governed by MIT license that can be
  7. * found in the LICENSE.txt file.
  8. */
  9. #ifndef INTERPOSED_H
  10. #define INTERPOSED_H
  11. extern int foo(int x, float y);
  12. extern int bar(int x, int y, int z);
  13. #endif