mirror of
https://github.com/neovim/neovim.git
synced 2025-10-03 08:28:34 +00:00
misc: UNIX => Unix #4022
Although UNIX is a registered trademark of The Open Group, it doesn't really matter whether we refer to these systems as UNIX, Unix, or Unix-like. So, for consistency, refer to them collectively as Unix. Related: http://www.greens.org/about/unix.html http://www.unixica.com/html/unixunix.html
This commit is contained in:

committed by
Michael Reed

parent
0735b05c82
commit
a7ade5c832
@@ -93,7 +93,7 @@ struct tm *os_localtime_r(const time_t *restrict clock,
|
||||
#endif
|
||||
}
|
||||
|
||||
/// Obtains the current UNIX timestamp and adjusts it to local time
|
||||
/// Obtains the current Unix timestamp and adjusts it to local time.
|
||||
///
|
||||
/// @param result Pointer to a 'struct tm' where the result should be placed
|
||||
/// @return A pointer to a 'struct tm' in the current time zone (the 'result'
|
||||
@@ -104,7 +104,7 @@ struct tm *os_get_localtime(struct tm *result) FUNC_ATTR_NONNULL_ALL
|
||||
return os_localtime_r(&rawtime, result);
|
||||
}
|
||||
|
||||
/// Obtains the current UNIX timestamp
|
||||
/// Obtains the current Unix timestamp.
|
||||
///
|
||||
/// @return Seconds since epoch.
|
||||
Timestamp os_time(void)
|
||||
|
Reference in New Issue
Block a user