Changeset 8d2dd7f2 in mainline for uspace/app/sbi/src


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>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/bigint_t.h

    re48947e r8d2dd7f2  
    3030#define BIGINT_T_H_
    3131
    32 #include <sys/types.h>
    3332#include <stdint.h>
     33#include <stddef.h>
     34#include <stdbool.h>
    3435
    3536typedef uint8_t bigint_word_t;
     
    4748
    4849        /** Sign. */
    49         bool_t negative;
     50        bool negative;
    5051
    5152        /** Digits starting from the least significant. */
Note: See TracChangeset for help on using the changeset viewer.