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

Last change on this file since 22 was 22, checked in by phkim, 11 years ago
  1. phkim
  2. newcon3sk 를 kctv 로 브랜치 함
  • 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.