Changeset 1b20da0 in mainline for uspace/lib/posix/src/unistd.c


Ignore:
Timestamp:
2018-02-28T17:52:03Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/src/unistd.c

    rdf6ded8 r1b20da0  
    124124char *getcwd(char *buf, size_t size)
    125125{
    126         if (failed(vfs_cwd_get(buf, size))) 
     126        if (failed(vfs_cwd_get(buf, size)))
    127127                return NULL;
    128128        return buf;
     
    174174/**
    175175 * Get the real group ID of the calling process.
    176  * 
     176 *
    177177 * @return Group ID.
    178178 */
     
    309309/**
    310310 * Remove a link to a file.
    311  * 
     311 *
    312312 * @param path File pathname.
    313313 * @return Zero on success, -1 otherwise.
     
    334334/**
    335335 * Duplicate an open file descriptor.
    336  * 
     336 *
    337337 * @param fildes File descriptor to be duplicated.
    338338 * @param fildes2 File descriptor to be paired with the same file description
     
    378378/**
    379379 * Get configurable system variables.
    380  * 
     380 *
    381381 * @param name Variable name.
    382382 * @return Variable value.
     
    421421
    422422/**
    423  * 
     423 *
    424424 * @param path
    425425 * @param name
     
    434434
    435435/**
    436  * 
     436 *
    437437 * @return
    438438 */
     
    445445
    446446/**
    447  * 
     447 *
    448448 * @param path
    449449 * @param argv
     
    458458
    459459/**
    460  * 
     460 *
    461461 * @param file
    462462 * @param argv
     
    471471
    472472/**
    473  * 
     473 *
    474474 * @param fildes
    475475 * @return
Note: See TracChangeset for help on using the changeset viewer.