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

#include<stdio.h>

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