mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-12-20 21:00:07 +01:00
12 lines
152 B
C++
12 lines
152 B
C++
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <unistd.h>
|
||
|
|
|
||
|
|
#include <libfprint/fprint.h>
|
||
|
|
|
||
|
|
int main (int argc, char **argv)
|
||
|
|
{
|
||
|
|
fp_init ();
|
||
|
|
return 0;
|
||
|
|
}
|