For removing a compiler warning on Linux.
Change-Id: I8cb767e5b63feeace570179598e5cc7c9b360e5f
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
*
*/
+#include <stdio.h>
+
#ifdef _WIN32
/* Windows implement */
-#include <stdio.h>
#include <windows.h>
#define CINTERFACE
#define COBJMACROS
#elif __linux
/* Linux implement */
-#include <stdio.h>
+#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
/* MacOS, Now, not implemented. */
static int check_cam(void)
{
+ fprintf(stdout, "[Webcam] Not implemented.\n");
return 1;
}