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

Last change on this file since 69 was 69, checked in by phkim, 10 years ago

1.phkim

  1. 광주방송
  2. 변경내용
    • VBI 캡션 disabled
  • 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.