Remove .internal from more header filenames

This commit is contained in:
Justine Tunney 2024-08-04 12:52:25 -07:00
parent c265c17d54
commit 31194165d2
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
734 changed files with 779 additions and 778 deletions

9
libc/dos.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef COSMOPOLITAN_LIBC_DOS_H_
#define COSMOPOLITAN_LIBC_DOS_H_
#define DOS_DATE(YEAR, MONTH_IDX1, DAY_IDX1) \
(((YEAR) - 1980) << 9 | (MONTH_IDX1) << 5 | (DAY_IDX1))
#define DOS_TIME(HOUR, MINUTE, SECOND) \
((HOUR) << 11 | (MINUTE) << 5 | (SECOND) >> 1)
#endif /* COSMOPOLITAN_LIBC_DOS_H_ */