Changeset 95c675b in mainline for uspace/lib/c/include/offset.h
- Timestamp:
- 2017-10-17T13:11:35Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60af4cdb
- Parents:
- dbf32b1 (diff), a416d070 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 moved
-
uspace/lib/c/include/offset.h (moved) (moved from uspace/lib/c/include/sys/typefmt.h ) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/offset.h
rdbf32b1 r95c675b 1 1 /* 2 * Copyright (c) 201 0 Jiri Svoboda2 * Copyright (c) 2017 Jakub Jermar 3 3 * All rights reserved. 4 4 * … … 30 30 * @{ 31 31 */ 32 /** @file Formatting macros for types from sys/types.h and some other 33 * system types. 32 /** @file 34 33 */ 35 34 36 #ifndef LIBC_ SYS_TYPEFMT_H_37 #define LIBC_ SYS_TYPEFMT_H_35 #ifndef LIBC_OFFSET_H_ 36 #define LIBC_OFFSET_H_ 38 37 39 #include <inttypes.h> 38 #include <stdint.h> 39 40 /* off64_t */ 41 #define OFF64_MIN INT64_MIN 42 #define OFF64_MAX INT64_MAX 43 44 /* aoff64_t */ 45 #define AOFF64_MIN UINT64_MIN 46 #define AOFF64_MAX UINT64_MAX 40 47 41 48 /* off64_t, aoff64_t */ … … 45 52 #define PRIXOFF64 PRIX64 46 53 54 /** Relative offset */ 55 typedef int64_t off64_t; 56 57 /** Absolute offset */ 58 typedef uint64_t aoff64_t; 59 47 60 #endif 48 61
Note:
See TracChangeset
for help on using the changeset viewer.
