mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 23:13:34 +00:00
11 lines
171 B
C
11 lines
171 B
C
|
#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);
|
||
|
}
|