]> CyberLeo.Net >> Repos - SourceForge/eyefi-config.git/blob - eyefi-chdk.c
Added dependencies on eyefi-config.h
[SourceForge/eyefi-config.git] / eyefi-chdk.c
1 /*
2  * eyefi-chdk.c
3  *
4  * Copyright (C) 2008 Dave Hansen <dave@sr71.net>
5  *
6  * This software may be redistributed and/or modified under the terms of
7  * the GNU General Public License ("GPL") version 2 as published by the
8  * Free Software Foundation.
9  */
10
11 #include "eyefi-config.h"
12
13 int eyefi_printf(const char *fmt, ...)
14 {
15         va_list args;
16         int r;
17
18         va_start(args, fmt);
19         r = vprintf(fmt, args);
20         va_end(args);
21
22         return r;
23 }
24
25