Add test program for C++ support

So that we don't regress
This commit is contained in:
Bastien Nocera
2010-09-08 11:03:58 +01:00
parent ff842125c5
commit 6bfc516553
3 changed files with 16 additions and 1 deletions

11
examples/cpp-test.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <libfprint/fprint.h>
int main (int argc, char **argv)
{
fp_init ();
return 0;
}