]> wimlib.net Git - wimlib/blobdiff - include/wimlib/timestamp.h
'extern' in function declarations is redundant
[wimlib] / include / wimlib / timestamp.h
index 37666c9aeb3329747aa55ca5348212b7132ee2d7..e30e06210c6d8706e88626c270de3c158cc11237 100644 (file)
 
 struct wimlib_timespec;
 
-extern time_t
+time_t
 wim_timestamp_to_time_t(u64 timestamp);
 
-extern void
+void
 wim_timestamp_to_wimlib_timespec(u64 timestamp, struct wimlib_timespec *wts,
                                 s32 *high_part_ret);
 
-extern struct timeval
+struct timeval
 wim_timestamp_to_timeval(u64 timestamp);
 
-extern struct timespec
+struct timespec
 wim_timestamp_to_timespec(u64 timestamp);
 
-extern u64
+u64
 time_t_to_wim_timestamp(time_t t);
 
-extern u64
+u64
 timeval_to_wim_timestamp(const struct timeval *tv);
 
-extern u64
+u64
 timespec_to_wim_timestamp(const struct timespec *ts);
 
-extern u64
+u64
 now_as_wim_timestamp(void);
 
-extern void
+void
 wim_timestamp_to_str(u64 timestamp, tchar *buf, size_t len);
 
 #endif /* _WIMLIB_TIMESTAMP_H */