Changeset 22d990c in mainline for uspace/lib/c/generic/task.c


Ignore:
Timestamp:
2020-01-11T00:36:26Z (4 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
06599a1
Parents:
8a74512
Message:

Clean up code

Correcting order of includes. Remove unnecessary new lines. Removing
old function declaration. Typos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/task.c

    r8a74512 r22d990c  
    3535/** @file
    3636 */
    37 
     37#include <task.h>
     38#include <loader/loader.h>
     39#include <stdarg.h>
     40#include <str.h>
     41#include <macros.h>
    3842#include <assert.h>
    3943#include <async.h>
     
    4347#include <ipc/taskman.h>
    4448#include <libc.h>
    45 #include <loader/loader.h>
    46 #include <macros.h>
    47 #include <malloc.h>
    48 #include <stdarg.h>
    49 #include <str.h>
    50 #include <task.h>
    5149#include <taskman.h>
    5250#include <vfs/vfs.h>
     
    424422        wait.flags = flags;
    425423        errno_t rc = task_setup_wait(id, &wait);
    426 
    427424        if (rc != EOK)
    428425                return rc;
Note: See TracChangeset for help on using the changeset viewer.