Changeset e299dbe in mainline
- Timestamp:
- 2017-06-09T21:47:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7354b5e
- Parents:
- b4d08a4
- Location:
- uspace/lib
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/adt/hash.h
rb4d08a4 re299dbe 36 36 37 37 #include <stdint.h> 38 #include < sys/types.h>38 #include <libarch/types.h> 39 39 40 40 /** Produces a uniform hash affecting all output bits from the skewed input. */ -
uspace/lib/c/include/fourcc.h
rb4d08a4 re299dbe 1 1 /* 2 * Copyright (c) 20 06 Josef Cejka2 * Copyright (c) 2017 Jakub Jermar 3 3 * All rights reserved. 4 4 * … … 33 33 */ 34 34 35 #ifndef LIBC_ SYS_TYPES_H_36 #define LIBC_ SYS_TYPES_H_35 #ifndef LIBC_FOURCC_H_ 36 #define LIBC_FOURCC_H_ 37 37 38 #include < libarch/types.h>38 #include <stdint.h> 39 39 40 40 typedef uint32_t fourcc_t; -
uspace/lib/draw/codec/webp.c
rb4d08a4 re299dbe 39 39 #include <stdbool.h> 40 40 #include <pixconv.h> 41 #include < sys/types.h>41 #include <fourcc.h> 42 42 #include <stdint.h> 43 43 #include <abi/fourcc.h> -
uspace/lib/posix/include/posix/stdint.h
rb4d08a4 re299dbe 102 102 #define UINTMAX_MAX UINT64_MAX 103 103 104 #include "libc/sys/types.h"105 106 104 /* 107 105 * Fast* and least* integer types.
Note:
See TracChangeset
for help on using the changeset viewer.