Changeset 87ba48cb in mainline for uspace/lib/posix/fcntl.h


Ignore:
Timestamp:
2011-06-29T23:19:47Z (13 years ago)
Author:
Petr Koupy <petr.koupy@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3daf2c31
Parents:
4ec6820
Message:

Cstyle corrections.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/fcntl.h

    r4ec6820 r87ba48cb  
    5555#undef F_SETLK
    5656#undef F_SETLKW
    57 #define F_DUPFD            0 /* Duplicate file descriptor. */
     57#define F_DUPFD            0 /* Duplicate file descriptor. */
    5858#define F_DUPFD_CLOEXEC    1 /* Same as F_DUPFD but with FD_CLOEXEC flag set. */
    59 #define F_GETFD            2 /* Get file descriptor flags. */
    60 #define F_SETFD            3 /* Set file descriptor flags. */
    61 #define F_GETFL            4 /* Get file status and access flags. */
    62 #define F_SETFL            5 /* Set file status flags. */
     59#define F_GETFD            2 /* Get file descriptor flags. */
     60#define F_SETFD            3 /* Set file descriptor flags. */
     61#define F_GETFL            4 /* Get file status and access flags. */
     62#define F_SETFL            5 /* Set file status flags. */
    6363#define F_GETOWN           6 /* Get socket owner. */
    6464#define F_SETOWN           7 /* Set socket owner. */
     
    6969/* File descriptor flags used with F_GETFD and F_SETFD. */
    7070#undef FD_CLOEXEC
    71 #define FD_CLOEXEC         1 /* Close on exec. */
     71#define FD_CLOEXEC         1 /* Close on exec. */
    7272
    7373extern int posix_fcntl(int fd, int cmd, ...);
Note: See TracChangeset for help on using the changeset viewer.