Changeset 1433ecda in mainline for uspace/lib/posix/src/sys/wait.c


Ignore:
Timestamp:
2018-04-04T15:42:37Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/src/sys/wait.c

    r47b2d7e3 r1433ecda  
    4545#include "posix/signal.h"
    4646
    47 int __posix_wifexited(int status) {
     47int __posix_wifexited(int status)
     48{
    4849        return status != INT_MIN;
    4950}
    5051
    51 int __posix_wexitstatus(int status) {
     52int __posix_wexitstatus(int status)
     53{
    5254        assert(__posix_wifexited(status));
    5355        return status;
    5456}
    5557
    56 int __posix_wifsignaled(int status) {
     58int __posix_wifsignaled(int status)
     59{
    5760        return status == INT_MIN;
    5861}
    5962
    60 int __posix_wtermsig(int status) {
     63int __posix_wtermsig(int status)
     64{
    6165        assert(__posix_wifsignaled(status));
    6266        /* There is no way to distinguish reason
Note: See TracChangeset for help on using the changeset viewer.