mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
3e4fd4b0ad
This change also pays off some of the remaining technical debt with stdio, file descriptors, and memory managemnt polyfills.
12 lines
283 B
C
12 lines
283 B
C
#ifndef COSMOPOLITAN_LIBC_INTERNAL_NOTICE_H_
|
|
#define COSMOPOLITAN_LIBC_INTERNAL_NOTICE_H_
|
|
#ifndef __STRICT_ANSI__
|
|
|
|
#ifdef __ASSEMBLER__
|
|
.include "libc/notice.inc"
|
|
#else
|
|
asm(".include \"libc/notice.inc\"");
|
|
#endif
|
|
|
|
#endif /* !ANSI */
|
|
#endif /* COSMOPOLITAN_LIBC_INTERNAL_NOTICE_H_ */
|