mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-19 11:30:51 +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);
|
||
|
}
|