Changeset a46da63 in mainline for libc/generic/mmap.c


Ignore:
Timestamp:
2006-06-16T20:50:51Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
153a209
Parents:
b34fab6
Message:

big code cleanup, compile with -Wall -Werror to enforce better coding
there is currently one warning that requires attention, please review

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/generic/mmap.c

    rb34fab6 ra46da63  
    2727 */
    2828
    29  /** @addtogroup libc
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    3737#include <unistd.h>
    3838
    39 void *mmap(void  *start, size_t length, int prot, int flags, int fd,
    40            off_t offset)
     39void *mmap(void  *start, size_t length, int prot, int flags, int fd, off_t offset)
    4140{
    42         int rc;
    43 
    4441        if (!start)
    4542                start = as_get_mappable_page(length);
     
    5956
    6057
    61  /** @}
     58/** @}
    6259 */
    63  
    64  
Note: See TracChangeset for help on using the changeset viewer.