mirror of
https://github.com/yugr/Implib.so
synced 2026-06-08 18:33:41 +00:00
17 lines
571 B
C
17 lines
571 B
C
/*
|
|
* Copyright 2024 Yury Gribov
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Use of this source code is governed by MIT license that can be
|
|
* found in the LICENSE.txt file.
|
|
*/
|
|
|
|
#ifndef INTERPOSED_H
|
|
#define INTERPOSED_H
|
|
|
|
extern void foo(int x0, int x1, int x2, int x3, int x4, int x5, int x6, int x7, int x8, int x9, int x10, int x11, int x12, int x13, int x14, int x15);
|
|
extern void bar(double x0, double x1, double x2, double x3, double x4, double x5, double x6, double x7, double x8, double x9, double x10, double x11, double x12, double x13, double x14, double x15);
|
|
|
|
#endif
|