Changes in uspace/lib/c/include/offset.h [1b20da0:bc56f30] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/offset.h
r1b20da0 rbc56f30 33 33 */ 34 34 35 #ifndef LIBC_OFFSET_H_ 36 #define LIBC_OFFSET_H_ 35 #ifndef _LIBC_OFFSET_H_ 36 #define _LIBC_OFFSET_H_ 37 38 #ifndef _HELENOS_SOURCE 39 #error This file should only be included from HelenOS sources 40 #endif 37 41 38 42 #include <stdint.h> 43 #include <_bits/decls.h> 44 #include <_bits/off64_t.h> 39 45 40 46 /* off64_t */ … … 52 58 #define PRIXOFF64 PRIX64 53 59 54 /** Relative offset */ 55 typedef int64_t off64_t; 60 __HELENOS_DECLS_BEGIN; 56 61 57 62 /** Absolute offset */ 58 63 typedef uint64_t aoff64_t; 64 65 __HELENOS_DECLS_END; 59 66 60 67 #endif
Note:
See TracChangeset
for help on using the changeset viewer.