Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/io.c

    rb7fd2a0 rf77c1c9  
    297297                flags |= WALK_MAY_CREATE;
    298298        int file;
    299         errno_t rc = vfs_lookup(path, flags, &file);
     299        int rc = vfs_lookup(path, flags, &file);
    300300        if (rc != EOK) {
    301301                errno = rc;
     
    364364static int _fclose_nofree(FILE *stream)
    365365{
    366         errno_t rc = 0;
     366        int rc = 0;
    367367       
    368368        fflush(stream);
     
    433433static size_t _fread(void *buf, size_t size, size_t nmemb, FILE *stream)
    434434{
    435         errno_t rc;
     435        int rc;
    436436        size_t nread;
    437437
     
    462462static size_t _fwrite(const void *buf, size_t size, size_t nmemb, FILE *stream)
    463463{
    464         errno_t rc;
     464        int rc;
    465465        size_t nwritten;
    466466
     
    495495static void _ffillbuf(FILE *stream)
    496496{
    497         errno_t rc;
     497        int rc;
    498498        size_t nread;
    499499
     
    801801int fseek(FILE *stream, long offset, int whence)
    802802{
    803         errno_t rc;
     803        int rc;
    804804
    805805        if (stream->error)
     
    877877       
    878878        if ((stream->fd >= 0) && (stream->need_sync)) {
    879                 errno_t rc;
     879                int rc;
    880880
    881881                /**
     
    934934}
    935935
    936 errno_t vfs_fhandle(FILE *stream, int *handle)
     936int vfs_fhandle(FILE *stream, int *handle)
    937937{
    938938        if (stream->fd >= 0) {
Note: See TracChangeset for help on using the changeset viewer.