source: svn/newcon3bcm2_21bu/BSEAV/lib/bcmplayer/utils/brcm_kni.c @ 46

Last change on this file since 46 was 46, checked in by megakiss, 11 years ago

459Mhz로 OTC 주파수 변경

  • Property svn:executable set to *
File size: 296 bytes
Line 
1#include <stdlib.h>
2#include <string.h>
3#include <stdarg.h>
4#include <stdio.h>
5#include <unistd.h>
6#include <sys/types.h>
7
8int bcmKNIprintf_stderr
9(
10        const char * format,
11        ...
12)
13{
14        va_list ap;
15        int rc;
16
17        va_start( ap, format );
18        rc = vfprintf( stderr, format, ap );
19        va_end( ap );
20
21        return rc;
22}
Note: See TracBrowser for help on using the repository browser.