Wording improvements, from "Valentin I. Spitkovsky"
[pintos.git] / src / filesys / off_t.h
blob9caff4dbae88823f109b1d3ee99c7535f79a55ce
1 #ifndef FILESYS_OFF_T_H
2 #define FILESYS_OFF_T_H
4 #include <stdint.h>
6 /* An offset within a file.
7 This is a separate header because multiple headers want this
8 definition but not any others. */
9 typedef int32_t off_t;
11 /* Format specifier for printf(), e.g.:
12 printf ("offset=%"PROTd"\n", offset); */
13 #define PROTd PRId32
15 #endif /* filesys/off_t.h */