Changeset 5088:eb14fce06df5 in roaraudio


Ignore:
Timestamp:
07/10/11 23:14:28 (13 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

relex type for fopencookie(), maybe helps on cygwin

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • include/libroar/vio_stdio.h

    r4708 r5088  
    4646#endif 
    4747#if defined(ROAR_HAVE_FOPENCOOKIE) 
    48 __ssize_t roar_vio_to_stdio_read (void *__cookie, char *__buf, size_t __nbytes); 
    49 __ssize_t roar_vio_to_stdio_write (void *__cookie, __const char *__buf, size_t __n); 
     48ssize_t roar_vio_to_stdio_read (void *__cookie, char *__buf, size_t __nbytes); 
     49ssize_t roar_vio_to_stdio_write (void *__cookie, __const char *__buf, size_t __n); 
    5050int roar_vio_to_stdio_lseek (void *__cookie, _IO_off64_t *__pos, int __w); 
    5151#elif defined(ROAR_HAVE_FUNOPEN) 
  • libroar/vio_stdio.c

    r4845 r5088  
    8787 
    8888#if defined(ROAR_HAVE_FOPENCOOKIE) 
    89 __ssize_t roar_vio_to_stdio_read (void *__cookie, char *__buf, size_t __nbytes) { 
     89ssize_t roar_vio_to_stdio_read (void *__cookie, char *__buf, size_t __nbytes) { 
    9090#elif defined(ROAR_HAVE_FUNOPEN) 
    9191int roar_vio_to_stdio_read(void *__cookie, char *__buf, int __nbytes) { 
     
    9595 
    9696#if defined(ROAR_HAVE_FOPENCOOKIE) 
    97 __ssize_t roar_vio_to_stdio_write (void *__cookie, __const char *__buf, size_t __n) { 
     97ssize_t roar_vio_to_stdio_write (void *__cookie, __const char *__buf, size_t __n) { 
    9898#elif defined(ROAR_HAVE_FUNOPEN) 
    9999int roar_vio_to_stdio_write(void *__cookie, const char *__buf, int __n) { 
Note: See TracChangeset for help on using the changeset viewer.