mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
14 lines
173 B
C
14 lines
173 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
int s = findfpcp();
|
||
|
|
||
|
if (s == -1)
|
||
|
printf("FPE not found\n");
|
||
|
else
|
||
|
printf("FPE found in slot %d\n", s);
|
||
|
|
||
|
return (0);
|
||
|
}
|