Ignore:
Timestamp:
2019-05-28T19:24:14Z (5 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
77de449e
Parents:
af5037d (diff), bebd154 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-05-28 19:24:14)
git-committer:
GitHub <noreply@…> (2019-05-28 19:24:14)
Message:

Merge pull request #161 from le-jzr/cxxcompat2

C++ compatibility improvements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/include/posix/sys/wait.h

    raf5037d r52acfab  
    3737
    3838#include <sys/types.h>
     39#include <_bits/decls.h>
    3940
    40 #undef WIFEXITED
    41 #undef WEXITSTATUS
    42 #undef WIFSIGNALED
    43 #undef WTERMSIG
    4441#define WIFEXITED(status) __posix_wifexited(status)
    4542#define WEXITSTATUS(status) __posix_wexitstatus(status)
    4643#define WIFSIGNALED(status) __posix_wifsignaled(status)
    4744#define WTERMSIG(status) __posix_wtermsig(status)
     45
     46__C_DECLS_BEGIN;
    4847
    4948extern int __posix_wifexited(int status);
     
    5554extern pid_t waitpid(pid_t pid, int *stat_ptr, int options);
    5655
     56__C_DECLS_END;
     57
    5758#endif /* POSIX_SYS_WAIT_H_ */
    5859
Note: See TracChangeset for help on using the changeset viewer.