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

Last change on this file was 2, checked in by jglee, 11 years ago

first commit

  • 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.