Fortraneries/C_Binding/single_function.c

10 lines
121 B
C
Raw Normal View History

2023-02-11 17:05:58 +01:00
#include <stdio.h>
long tth_getpid(int option)
{
fprintf(stderr, ">>> %s ( %d )\n", __func__, option);
return 42L;
}