cosmopolitan/libc/intrin/kweekdaynameshort.S

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.2 KiB
ArmAsm
Raw Normal View History

2020-06-15 14:18:57 +00:00
#if 0
/*
To the extent possible under law, Justine Tunney has waived
all copyright and related or neighboring rights to this file,
as it is written in the following disclaimers:
http://unlicense.org/
http://creativecommons.org/publicdomain/zero/1.0/
*/
#endif
#include "libc/macros.internal.h"
2020-06-15 14:18:57 +00:00
// Type #1:
// - Indexable C-String Array
// - extern const char kWeekdayNameShort[7][4];
// Type #2:
// - Double-NUL Terminated String
// - extern const char kWeekdayNameShort[];
.section .rodata,"a",@progbits
.underrun
2020-06-15 14:18:57 +00:00
kWeekdayNameShort:
.asciz "Sun"
.asciz "Mon"
.asciz "Tue"
.asciz "Wed"
.asciz "Thu"
.asciz "Fri"
.asciz "Sat"
.byte 0
.endobj kWeekdayNameShort,globl
.overrun
2020-06-15 14:18:57 +00:00
.previous