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