Add comments.
[pintos-anon] / src / filesys / off_t.h
1 #ifndef HEADER_OFF_T_H
2 #define HEADER_OFF_T_H 1
3
4 #include <stdint.h>
5
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;
10
11 #endif /* off_t.h */