mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-22 21:32:31 +00:00
Add scouts honor escape hatch for source embedding
This commit is contained in:
parent
c91b3c5006
commit
b4269930f7
547 changed files with 1516 additions and 944 deletions
10
examples/package/lib/myprint.c
Normal file
10
examples/package/lib/myprint.c
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include "examples/package/lib/myprint.h"
|
||||
#include "libc/stdio/stdio.h"
|
||||
|
||||
void MyPrint(const char *s) {
|
||||
MyAsm(s);
|
||||
}
|
||||
|
||||
void MyPrint2(const char *s) {
|
||||
fputs(s, stdout);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue