aboutsummaryrefslogtreecommitdiff
path: root/manual tests/9 nostdlib/prog.c
blob: b9216ee81dd4d4acf8418c65582db550c8a1058f (plain)
1
2
3
4
5
6
7

#include<stdio.h>

int main(void) {
  const char *message = "Hello without stdlib.\n";
  return simple_print(message, simple_strlen(message));
}