mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +00:00
10 lines
171 B
C
10 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);
|
|
}
|