Changeset 8d2dd7f2 in mainline for uspace/app/taskdump


Ignore:
Timestamp:
2017-05-13T19:03:14Z (9 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9c96634
Parents:
e48947e
Message:

Reduce the number of files that include <sys/types.h>

Location:
uspace/app/taskdump
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/taskdump/elf_core.c

    re48947e r8d2dd7f2  
    5252#include <stdio.h>
    5353#include <stdlib.h>
     54#include <stdint.h>
     55#include <stddef.h>
    5456#include <errno.h>
    55 #include <sys/types.h>
    5657#include <mem.h>
    57 #include <stdint.h>
    5858#include <as.h>
    5959#include <udebug.h>
  • uspace/app/taskdump/include/symtab.h

    re48947e r8d2dd7f2  
    3737
    3838#include <elf/elf.h>
    39 #include <sys/types.h>
     39#include <stddef.h>
    4040
    4141typedef struct {
  • uspace/app/taskdump/symtab.c

    re48947e r8d2dd7f2  
    3939#include <stdio.h>
    4040#include <stdlib.h>
     41#include <stddef.h>
    4142#include <errno.h>
    42 #include <sys/types.h>
    4343#include <vfs/vfs.h>
    4444
  • uspace/app/taskdump/taskdump.c

    re48947e r8d2dd7f2  
    3838#include <stdio.h>
    3939#include <stdlib.h>
     40#include <stddef.h>
     41#include <stdbool.h>
    4042#include <errno.h>
    4143#include <udebug.h>
    4244#include <task.h>
    4345#include <as.h>
    44 #include <sys/types.h>
    4546#include <sys/typefmt.h>
    4647#include <libarch/istate.h>
    4748#include <macros.h>
    4849#include <assert.h>
    49 #include <stdbool.h>
    5050
    5151#include <symtab.h>
Note: See TracChangeset for help on using the changeset viewer.