summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/write12.c
blob: 8e0130bfb291164e26ef5103e3adde58de900b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <unistd.h>
#include <string.h>
#include <write12.h>

int __write1 (const char* s) {
  return write(1, s, strlen(s));
}

int __write2 (const char* s) {
  return write(2, s, strlen(s));
}